diff options
author | Raphaël Jakse <raphael.git@jakse.fr> | 2024-04-14 10:14:58 +0200 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2024-05-02 16:30:12 +0200 |
commit | c53e4a8b96419bcb8b86d22061bf7675fdce6ee5 (patch) | |
tree | a8bc413497a899c3ffeabe0575c36364af3f75b4 /apps/files | |
parent | 8694675a2635f06a5cac59253aa1ec45a019ee8a (diff) | |
download | nextcloud-server-c53e4a8b96419bcb8b86d22061bf7675fdce6ee5.tar.gz nextcloud-server-c53e4a8b96419bcb8b86d22061bf7675fdce6ee5.zip |
fix(files): apply the renaming when leaving the input field
Refs: #42689
Signed-off-by: Raphaël Jakse <raphael.git@jakse.fr>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/src/components/FileEntry/FileEntryName.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/components/FileEntry/FileEntryName.vue b/apps/files/src/components/FileEntry/FileEntryName.vue index 3b2faa4e506..c8de61cdfe8 100644 --- a/apps/files/src/components/FileEntry/FileEntryName.vue +++ b/apps/files/src/components/FileEntry/FileEntryName.vue @@ -22,7 +22,7 @@ <template> <!-- Rename input --> <form v-if="isRenaming" - v-on-click-outside="stopRenaming" + v-on-click-outside="onRename" :aria-label="t('files', 'Rename file')" class="files-list__row-rename" @submit.prevent.stop="onRename"> |