diff options
author | nfebe <fenn25.fn@gmail.com> | 2025-01-20 18:06:08 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2025-02-03 11:49:30 +0000 |
commit | 51ee89e9489c5de1e13cf21f622e845aae4ecc7e (patch) | |
tree | eb5fe396de86cfd3ad1c25efc9e1eb49f6d794ed | |
parent | 6a55819e7186529c9971053140f112c8c4919879 (diff) | |
download | nextcloud-server-backport/50260/stable30.tar.gz nextcloud-server-backport/50260/stable30.zip |
fix(files_sharing): Adjust wrong labeling identified by testbackport/50260/stable30
Signed-off-by: nfebe <fenn25.fn@gmail.com>
[skip ci]
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index 0c0a71f26b7..d4b909e65ee 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -86,7 +86,7 @@ :disabled="pendingEnforcedExpirationDate || saving" class="share-link-expiration-date-checkbox" @change="onDefaultExpirationDateEnabledChange"> - {{ config.enforcePasswordForPublicLink ? t('files_sharing', 'Enable link expiration (enforced)') : t('files_sharing', 'Enable link expiration') }} + {{ config.isDefaultExpireDateEnforced ? t('files_sharing', 'Enable link expiration (enforced)') : t('files_sharing', 'Enable link expiration') }} </NcActionCheckbox> <!-- expiration date --> |