diff options
author | fenn-cs <fenn25.fn@gmail.com> | 2024-06-26 16:13:37 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-06-27 08:11:41 +0200 |
commit | 0c8fe406f14686deee8b034e31bbfe7f70c6f0dc (patch) | |
tree | 70716e22b6cf8a08fba1fd99e74be2f5ae59835c /apps/files_sharing/src | |
parent | 7eecfd6d895e6dc7e9b0018d44afa01babe2cb41 (diff) | |
download | nextcloud-server-0c8fe406f14686deee8b034e31bbfe7f70c6f0dc.tar.gz nextcloud-server-0c8fe406f14686deee8b034e31bbfe7f70c6f0dc.zip |
fix(SharingEntryLink): Show enforced password input label
While upgrading icons in b3ec461fe86258a0a3831dff28e394018d0044c9 enforced password label
icon was not correctly wrapped.
Resolves : https://github.com/nextcloud/server/issues/45941
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index cf2338fc4c4..1a597999310 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -60,7 +60,9 @@ <!-- password --> <NcActionText v-if="pendingEnforcedPassword"> - <LockIcon :size="20" /> + <template #icon> + <LockIcon :size="20" /> + </template> {{ t('files_sharing', 'Password protection (enforced)') }} </NcActionText> <NcActionCheckbox v-else-if="pendingPassword" |