aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2025-02-28 16:40:40 +0100
committerFerdinand Thiessen <opensource@fthiessen.de>2025-03-02 12:47:11 +0100
commit432c4ac99403719996e0fece8aea7159357a20df (patch)
treecc480bbd94987ba1fa8b9fa4320051eb339ff56b
parent32d6ba0129340d5167764e82eeff7cdf4adc6ee7 (diff)
downloadnextcloud-server-432c4ac99403719996e0fece8aea7159357a20df.tar.gz
nextcloud-server-432c4ac99403719996e0fece8aea7159357a20df.zip
fix(eslint): Strings must use singlequotebackport/51142/stable30
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
-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 61a9cf1122f..5d0e5e38d42 100644
--- a/apps/files_sharing/src/views/SharingDetailsTab.vue
+++ b/apps/files_sharing/src/views/SharingDetailsTab.vue
@@ -708,7 +708,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
},