Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-08-03 11:40:24 +0300
committernextcloud-command <nextcloud-command@users.noreply.github.com>2022-08-04 18:21:10 +0300
commit02fd7d22160fea1d51e19e914e7cf4d08013aa85 (patch)
treeadc580e9f0585fce3c29ddc222764a45d421a6b5 /apps
parent5d697b54f7e0af5950031fe8e46bdf800c108d86 (diff)
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')
-rw-r--r--apps/files_sharing/src/components/SharingEntry.vue6
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')
},
/**