aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/src/views/SharingDetailsTab.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2025-02-28 16:40:40 +0100
committerskjnldsv <skjnldsv@protonmail.com>2025-02-28 16:43:14 +0100
commit466850f7969b64f1ee2f7743b0ccd395e5f9f3a6 (patch)
tree530c6cb3725e1fdc465b8ceb736380d144e0c02c /apps/files_sharing/src/views/SharingDetailsTab.vue
parent288287935a6056c8d156d6bc8a080ade5e107500 (diff)
downloadnextcloud-server-466850f7969b64f1ee2f7743b0ccd395e5f9f3a6.tar.gz
nextcloud-server-466850f7969b64f1ee2f7743b0ccd395e5f9f3a6.zip
fix(eslint): Strings must use singlequote
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
Diffstat (limited to 'apps/files_sharing/src/views/SharingDetailsTab.vue')
-rw-r--r--apps/files_sharing/src/views/SharingDetailsTab.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/views/SharingDetailsTab.vue b/apps/files_sharing/src/views/SharingDetailsTab.vue
index 1b9e24d4713..ed7d324046c 100644
--- a/apps/files_sharing/src/views/SharingDetailsTab.vue
+++ b/apps/files_sharing/src/views/SharingDetailsTab.vue
@@ -743,7 +743,7 @@ export default {
},
errorPasswordLabel() {
if (this.passwordError) {
- return t('files_sharing', "Password field cannot be empty")
+ return t('files_sharing', 'Password field cannot be empty')
}
return undefined
},