diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-11-12 08:10:28 +0100 |
---|---|---|
committer | npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com> | 2020-11-13 07:32:01 +0000 |
commit | e132c0560bc99d7885afd9e16361ca95577dd24c (patch) | |
tree | 900565f3eeef5f8863f146c9cb1f704212bd5ee6 /apps/files_sharing/src | |
parent | 9c59778ee15e3bb23458535128192bea82214566 (diff) | |
download | nextcloud-server-e132c0560bc99d7885afd9e16361ca95577dd24c.tar.gz nextcloud-server-e132c0560bc99d7885afd9e16361ca95577dd24c.zip |
Fix default internal expiration date enforce
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntry.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue index 5a734a2fc6e..562cb22e8aa 100644 --- a/apps/files_sharing/src/components/SharingEntry.vue +++ b/apps/files_sharing/src/components/SharingEntry.vue @@ -76,9 +76,9 @@ <!-- expiration date --> <ActionCheckbox :checked.sync="hasExpirationDate" - :disabled="config.isDefaultExpireDateEnforced || saving" + :disabled="config.isDefaultInternalExpireDateEnforced || saving" @uncheck="onExpirationDisable"> - {{ config.isDefaultExpireDateEnforced + {{ config.isDefaultInternalExpireDateEnforced ? t('files_sharing', 'Expiration date enforced') : t('files_sharing', 'Set expiration date') }} </ActionCheckbox> |