Skip to content

Commit

Permalink
Fix word-break for group name in edit role group
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
FarahRasheed1 authored and sivaprabug committed Jul 12, 2024
1 parent 7f70832 commit 8e1ed79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/SecurityAndAccess/Ldap/ModalAddRoleGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<template v-if="roleGroup !== null">
<dl class="mb-4">
<dt>{{ $t('pageLdap.modal.groupName') }}</dt>
<dd>{{ form.groupName }}</dd>
<dd style="word-break: break-all">{{ form.groupName }}</dd>
</dl>
</template>

Expand Down

0 comments on commit 8e1ed79

Please sign in to comment.