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.
1 parent d9d72c3 commit 7f6914bCopy full SHA for 7f6914b
1 file changed
src/components/Reports/TotalReport/TotalReportBarGraph.jsx
@@ -72,7 +72,7 @@ function TotalReportBarGraph({ barData, range }) {
72
.style('fill', 'white')
73
.style('font-size', '20px')
74
.style('font-weight', 'bold')
75
- .text(isNaN(d.value) ? '' : d.value);
+ .text(Number.isNaN(d.value) ? '' : d.value);
76
});
77
78
0 commit comments