aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/components/FileEntry.vue
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2023-09-06 18:39:53 +0200
committernextcloud-command <nextcloud-command@users.noreply.github.com>2023-09-08 15:53:23 +0000
commitb34e00beeebd011ae152865801f9c0295986313b (patch)
tree4d78b213c4bef1cfbfb0d23a67516ced484cacfa /apps/files/src/components/FileEntry.vue
parent165aeeb7f08ef52c9375aeff67fa00524356bf31 (diff)
downloadnextcloud-server-b34e00beeebd011ae152865801f9c0295986313b.tar.gz
nextcloud-server-b34e00beeebd011ae152865801f9c0295986313b.zip
Remove quotation marks
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/files/src/components/FileEntry.vue')
-rw-r--r--apps/files/src/components/FileEntry.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/components/FileEntry.vue b/apps/files/src/components/FileEntry.vue
index 98834c3b061..2f03859feb2 100644
--- a/apps/files/src/components/FileEntry.vue
+++ b/apps/files/src/components/FileEntry.vue
@@ -888,7 +888,7 @@ export default Vue.extend({
showError(this.t('files', 'Could not rename "{oldName}", it does not exist any more', { oldName }))
return
} else if (error?.response?.status === 412) {
- showError(this.t('files', 'The name "{newName}"" is already used in the folder "{dir}". Please choose a different name.', { newName, dir: this.currentDir }))
+ showError(this.t('files', 'The name "{newName}" is already used in the folder "{dir}". Please choose a different name.', { newName, dir: this.currentDir }))
return
}