Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ const TemporalFilter = () => {

const clocValue = commit.diffStatistics.insertions + commit.diffStatistics.deletions;

commitMap.set(formattedDate, clocMapItem ? clocMapItem + 1 : 1);
clocMap.set(formattedDate, commitMapItem ? commitMapItem + clocValue : clocValue);
commitMap.set(formattedDate, commitMapItem ? commitMapItem + 1 : 1);
clocMap.set(formattedDate, clocMapItem ? clocMapItem + clocValue : clocValue);
Comment on lines +57 to +58
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

큰 이슈였네요!! 빨리 반영되어서 다행이네요ㅎㅎ

});

const buildReturnArray = (map: Map<string, number>) =>
Expand Down
Loading