(parentPath, name)
| 212 | areBulkOptionsOpen.value = !areBulkOptionsOpen.value; |
| 213 | } |
| 214 | function onClickOpenRenameDirectory(parentPath, name) { |
| 215 | renameDirectoryOrFileModal.value = { |
| 216 | isOpen: true, |
| 217 | isDirectory: true, |
| 218 | parentPath, |
| 219 | name |
| 220 | }; |
| 221 | } |
| 222 | function onClickOpenRenameFile(parentPath, name) { |
| 223 | renameDirectoryOrFileModal.value = { |
| 224 | isOpen: true, |
no outgoing calls
no test coverage detected