diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2025-02-28 16:40:40 +0100 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2025-02-28 16:43:14 +0100 |
commit | 466850f7969b64f1ee2f7743b0ccd395e5f9f3a6 (patch) | |
tree | 530c6cb3725e1fdc465b8ceb736380d144e0c02c /apps/files_sharing/src/views/SharingDetailsTab.vue | |
parent | 288287935a6056c8d156d6bc8a080ade5e107500 (diff) | |
download | nextcloud-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.vue | 2 |
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 }, |