From 0d01ab77d3afb6edb1f60fa3029d5842855dc88a Mon Sep 17 00:00:00 2001 From: Norman Niati Date: Tue, 9 Jun 2026 12:09:34 +0200 Subject: [PATCH] fix(scope): make the DN/LDAP path editable in edition mode Follow-up to #57. The previous patch kept the DN read-only when editing an existing container scope. Per the issue comment 'And this path should be editable', the LDAP path must be editable in both create and edit mode. The backend already allows updating ContainerScope.dn (no @Immutable on the field). Closes #55. --- ui/src/views/ContainerScopeView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/views/ContainerScopeView.vue b/ui/src/views/ContainerScopeView.vue index 0cfcf08..4967ee5 100644 --- a/ui/src/views/ContainerScopeView.vue +++ b/ui/src/views/ContainerScopeView.vue @@ -54,7 +54,7 @@ + :disabled="readOnly" :rules="[rules.required]" />

mdi-alert-outline{{ t('containerScope.lockedHint') }}