mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 08:16:43 -04:00
Merge pull request #42553 from nextcloud/backport/42443/stable28
[stable28] fix(files): focus file name on renaming also initially
This commit is contained in:
commit
0398f53b93
3 changed files with 10 additions and 7 deletions
|
|
@ -174,10 +174,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