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];
}
noteIdsToCount.forEach((nodeId) => {
getCount(nodeId);
noteIdsToCount.forEach((noteId) => {
getCount(noteId);
});
return noteIdToCountMap;