(folderId: number)
| 187 | } |
| 188 | |
| 189 | function applySingleFolderSelection(folderId: number) { |
| 190 | isApplyingFolderSelection = true |
| 191 | selectedFolderIds.value = [folderId] |
| 192 | state.folderId = folderId |
| 193 | lastSelectedFolderId.value = folderId |
| 194 | isApplyingFolderSelection = false |
| 195 | } |
| 196 | |
| 197 | function applyRangeFolderSelection(folderId: number) { |
| 198 | const orderedIds = flatFolderList.value.map(folder => folder.id) |
no outgoing calls
no test coverage detected