mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #42443 from nextcloud/fix/41876/files--focus-file-name-on-new-folder-rename
fix(files): focus file name on renaming also initially
This commit is contained in:
commit
22188979f3
3 changed files with 10 additions and 7 deletions
|
|
@ -185,10 +185,13 @@ export default Vue.extend({
|
|||
* in the input, without the extension.
|
||||
* @param renaming
|
||||
*/
|
||||
isRenaming(renaming: boolean) {
|
||||
if (renaming) {
|
||||
this.startRenaming()
|
||||
}
|
||||
isRenaming: {
|
||||
immediate: true,
|
||||
handler(renaming: boolean) {
|
||||
if (renaming) {
|
||||
this.startRenaming()
|
||||
}
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
4
dist/files-main.js
vendored
4
dist/files-main.js
vendored
File diff suppressed because one or more lines are too long
2
dist/files-main.js.map
vendored
2
dist/files-main.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue