Skip to content

Commit a25504e

Browse files
Fix lint issue
1 parent 9c31e5e commit a25504e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/components/range/range.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -570,9 +570,9 @@ export class Range implements ComponentInterface {
570570
this.value = !this.dualKnobs
571571
? valA
572572
: {
573-
lower: Math.min(valA, valB),
574-
upper: Math.max(valA, valB),
575-
};
573+
lower: Math.min(valA, valB),
574+
upper: Math.max(valA, valB),
575+
};
576576

577577
this.ionInput.emit({ value: this.value });
578578

0 commit comments

Comments
 (0)