1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-05 00:43:53 +00:00

feat(tag): support select multiple rows (#7378)

This commit is contained in:
Jerry Ren
2025-01-17 14:31:35 +08:00
committed by GitHub
parent 724c96bdf8
commit fdbf48fed3
3 changed files with 4 additions and 4 deletions

View File

@@ -54,7 +54,7 @@ export const getRecordsIdsByTreeNodeKeys = (nodesKeys, treeNodeKeyRecordIdMap) =
nodesKeys.forEach((nodeKey) => {
const selectedId = treeNodeKeyRecordIdMap[nodeKey];
if (selectedId && !idExistMap[selectedId]) {
selectedIds.push(nodeKey);
selectedIds.push(selectedId);
idExistMap[selectedId] = true;
}
});