Update note_map.js

This commit is contained in:
Castor 2023-04-24 13:43:19 +08:00 committed by GitHub
parent 89681977b5
commit e007aba067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,8 +27,8 @@ function buildDescendantCountMap(noteIdsToCount) {
return noteIdToCountMap[noteId]; return noteIdToCountMap[noteId];
} }
noteIdsToCount.forEach((nodeId) => { noteIdsToCount.forEach((noteId) => {
getCount(nodeId); getCount(noteId);
}); });
return noteIdToCountMap; return noteIdToCountMap;