diff --git a/dashboard/src/components/GroupDialog.vue b/dashboard/src/components/GroupDialog.vue index 5dbbc9f4d..b14df8ee3 100644 --- a/dashboard/src/components/GroupDialog.vue +++ b/dashboard/src/components/GroupDialog.vue @@ -81,9 +81,10 @@ defineExpose({ :title="group ? $t('users.editGroupDialog.title', { name: group.name }) : $t('users.addGroupDialog.title')" :confirm-label="group ? $t('main.dialog.save') : $t('users.group.addGroupAction')" :confirm-busy="busy" - :confirm-active="!busy" + :confirm-active="!busy && name !== ''" reject-style="secondary" - :reject-label="busy ? null : $t('main.dialog.cancel')" + :reject-label="$t('main.dialog.cancel')" + :reject-active="!busy" @confirm="onSubmit()" >

{{ $t('users.editGroupDialog.externalLdapWarning') }}

@@ -95,7 +96,7 @@ defineExpose({ - +
{{ formError.name }}