diff options
author | Julius Härtl <jus@bitgrid.net> | 2022-08-03 10:40:24 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2022-08-04 15:21:10 +0000 |
commit | 02fd7d22160fea1d51e19e914e7cf4d08013aa85 (patch) | |
tree | adc580e9f0585fce3c29ddc222764a45d421a6b5 /apps/files_sharing/src/components/SharingEntry.vue | |
parent | 5d697b54f7e0af5950031fe8e46bdf800c108d86 (diff) | |
download | nextcloud-server-02fd7d22160fea1d51e19e914e7cf4d08013aa85.tar.gz nextcloud-server-02fd7d22160fea1d51e19e914e7cf4d08013aa85.zip |
Fix label for allow download share permission
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntry.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntry.vue | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue index f873ef542ed..4748f75817b 100644 --- a/apps/files_sharing/src/components/SharingEntry.vue +++ b/apps/files_sharing/src/components/SharingEntry.vue @@ -412,11 +412,7 @@ export default { * @return {string} */ allowDownloadText() { - if (this.isFolder) { - return t('files_sharing', 'Allow download of office files') - } else { - return t('files_sharing', 'Allow download') - } + return t('files_sharing', 'Allow download') }, /** |