(input)
| 3587 | } |
| 3588 | |
| 3589 | function focusTreeRenameInput(input) { |
| 3590 | try { |
| 3591 | input.focus(); |
| 3592 | input.select(); |
| 3593 | } catch (e) { /* ignore */ } |
| 3594 | } |
| 3595 | |
| 3596 | export async function startInlineRenameInTree(folderPath, targetOpt) { |
| 3597 | const selectedFolder = folderPath || window.currentFolder || 'root'; |
no outgoing calls
no test coverage detected