diff --git a/frontend/src/views/website/runtime/php/index.vue b/frontend/src/views/website/runtime/php/index.vue index 4fc86119d..d1530f341 100644 --- a/frontend/src/views/website/runtime/php/index.vue +++ b/frontend/src/views/website/runtime/php/index.vue @@ -32,7 +32,15 @@ show-overflow-tooltip > @@ -142,6 +150,9 @@ const buttons = [ }, { label: i18n.global.t('commons.button.delete'), + disabled: function (row: Runtime.Runtime) { + return row.status === 'building'; + }, click: function (row: Runtime.Runtime) { openDelete(row); },