(parentPath, name)
| 289 | renameDirectoryOrFileModal.value = null; |
| 290 | } |
| 291 | function onClickOpenMoveDirectory(parentPath, name) { |
| 292 | moveDirectoryOrFileModal.value = { |
| 293 | isOpen: true, |
| 294 | isDirectory: true, |
| 295 | path: parentPath, |
| 296 | name |
| 297 | }; |
| 298 | } |
| 299 | function onClickOpenMoveFile(parentPath, name) { |
| 300 | moveDirectoryOrFileModal.value = { |
| 301 | isOpen: true, |
no outgoing calls
no test coverage detected