Skip to content

Commit 8e1ed79

Browse files
FarahRasheed1sivaprabug
authored andcommitted
Fix word-break for group name in edit role group
Apply 'word-break: break-all' style for the group name field in the Edit role group modal to ensure long group names wrap properly within their container. The change improves the readability and layout consistency of the group name display in the modal even if it contains long text. Fixes #111 Change-Id: Ia424fadc1630bbf28726a7064ff9b14764877d2b Signed-off-by: Farah Rasheed <[email protected]>
1 parent 7f70832 commit 8e1ed79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/SecurityAndAccess/Ldap/ModalAddRoleGroup.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<template v-if="roleGroup !== null">
1717
<dl class="mb-4">
1818
<dt>{{ $t('pageLdap.modal.groupName') }}</dt>
19-
<dd>{{ form.groupName }}</dd>
19+
<dd style="word-break: break-all">{{ form.groupName }}</dd>
2020
</dl>
2121
</template>
2222

0 commit comments

Comments
 (0)