(sourceId = '')
| 177 | } |
| 178 | |
| 179 | function getRootLabel(sourceId = '') { |
| 180 | const id = sourceId || getActiveSourceId(); |
| 181 | const name = getSourceNameById(id); |
| 182 | return name ? `(${name})` : '(Root)'; |
| 183 | } |
| 184 | |
| 185 | async function loadVisibleSources() { |
| 186 | if (__copyMoveSourcesCache) return __copyMoveSourcesCache; |
no test coverage detected