diff options
author | fenn-cs <fenn25.fn@gmail.com> | 2024-06-26 16:13:37 +0100 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2024-07-11 12:23:25 +0200 |
commit | e9d83d291bda784e58181c9cf11fbfbb5635a773 (patch) | |
tree | cb5b1dfc785adbde76c2c4dbafc751b390d354b4 /apps/files_sharing | |
parent | 406353add4d35373ea10105c04a20ab375ec063e (diff) | |
download | nextcloud-server-e9d83d291bda784e58181c9cf11fbfbb5635a773.tar.gz nextcloud-server-e9d83d291bda784e58181c9cf11fbfbb5635a773.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>
[skip ci]
Diffstat (limited to 'apps/files_sharing')
-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 6582566c164..d8c465008c3 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -77,7 +77,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" |