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 f58c74b commit d7e4157Copy full SHA for d7e4157
app/components/PVutils.ts
@@ -8,7 +8,7 @@ export function ExponentialOnThresholdFormat(
8
value: string | number,
9
precision: number = 3,
10
) {
11
- const nValue: number = (value == undefined || val == null) ? NaN : +value;
+ const nValue: number = (value == undefined || value == null) ? NaN : +value;
12
if (isNaN(nValue)) {
13
return value;
14
} else {
0 commit comments