diff options
author | Christopher Ng <chrng8@gmail.com> | 2025-03-25 14:31:44 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2025-03-28 14:12:52 -0700 |
commit | 374197c7218c63f5738b8b4cf5e8a0aeae9188c6 (patch) | |
tree | 016785d39edf53bafde0006a006d61d80d72e918 /apps/settings/src/components/Users/UserSettingsDialog.vue | |
parent | bf01685f3cf106085c2e8f1ce5c5018ec3b24e92 (diff) | |
download | nextcloud-server-374197c7218c63f5738b8b4cf5e8a0aeae9188c6.tar.gz nextcloud-server-374197c7218c63f5738b8b4cf5e8a0aeae9188c6.zip |
chore(settings): Add note on groups sorting
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/settings/src/components/Users/UserSettingsDialog.vue')
-rw-r--r-- | apps/settings/src/components/Users/UserSettingsDialog.vue | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/settings/src/components/Users/UserSettingsDialog.vue b/apps/settings/src/components/Users/UserSettingsDialog.vue index 56a2f65f3f1..94c77d320dd 100644 --- a/apps/settings/src/components/Users/UserSettingsDialog.vue +++ b/apps/settings/src/components/Users/UserSettingsDialog.vue @@ -43,6 +43,9 @@ </NcNoteCard> <fieldset> <legend>{{ t('settings', 'Group list sorting') }}</legend> + <NcNoteCard class="dialog__note" + type="info" + :text="t('settings', 'Sorting only applies to the currently loaded groups for performance reasons. Groups will be loaded as you navigate or search through the list.')" /> <NcCheckboxRadioSwitch type="radio" :checked.sync="groupSorting" data-test="sortGroupsByMemberCount" @@ -322,6 +325,12 @@ export default { </script> <style scoped lang="scss"> +.dialog { + &__note { + font-weight: normal; + } +} + fieldset { font-weight: bold; } |