We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 45471f5 + 6f66048 commit 1416267Copy full SHA for 1416267
packages/view/src/components/TemporalFilter/TemporalFilter.tsx
@@ -54,8 +54,8 @@ const TemporalFilter = () => {
54
55
const clocValue = commit.diffStatistics.insertions + commit.diffStatistics.deletions;
56
57
- commitMap.set(formattedDate, clocMapItem ? clocMapItem + 1 : 1);
58
- clocMap.set(formattedDate, commitMapItem ? commitMapItem + clocValue : clocValue);
+ commitMap.set(formattedDate, commitMapItem ? commitMapItem + 1 : 1);
+ clocMap.set(formattedDate, clocMapItem ? clocMapItem + clocValue : clocValue);
59
});
60
61
const buildReturnArray = (map: Map<string, number>) =>
0 commit comments