Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit fe61eda

Browse files
committed
fix(typo): fix comment typo
Signed-off-by: Eduardo Elias Saleh <du7@msn.com>
1 parent 5279d7f commit fe61eda

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/worldmap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export default class WorldMap {
128128
return !(this.ctrl.panel.hideEmpty && _.isNil(o.value))
129129
&& !(this.ctrl.panel.hideZero && o.value === 0)
130130
// The result of parseInt in case of "No Limit" or any other numberless string will be a NaN.
131-
// In that case all "not numbers" should invalidate the filter and ignored.
131+
// In that case all "not numbers" should invalidate the filter and be ignored.
132132
&& ([undefined, NaN, 0, ''].includes(minValue) || o.value >= minValue)
133133
&& ([undefined, NaN, ''].includes(maxValue) || o.value <= maxValue)
134134
});

0 commit comments

Comments
 (0)