diff --git a/frontend/src/views/setting/license/index.vue b/frontend/src/views/setting/license/index.vue index 589c7543f..fd51129d8 100644 --- a/frontend/src/views/setting/license/index.vue +++ b/frontend/src/views/setting/license/index.vue @@ -254,6 +254,9 @@ const buttons = [ }, { label: i18n.global.t('commons.button.edit'), + disabled: (row: any) => { + return row.status === 'Free'; + }, click: (row: any) => { licenseRef.value.acceptParams({ oldLicense: row.licenseName, isImport: true }); },