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 f7ad2ba commit 812d767Copy full SHA for 812d767
core/src/components/range/range.tsx
@@ -214,7 +214,7 @@ export class Range implements ComponentInterface {
214
@Prop({ mutable: true }) value: RangeValue = 0;
215
@Watch('value')
216
protected valueChanged(newValue: RangeValue, oldValue: RangeValue) {
217
- const valuesChanged = this.areValuesDifferent(newValue, oldValue);
+ const valuesChanged = this.compareValues(newValue, oldValue);
218
if (valuesChanged) {
219
this.ionInput.emit({ value: this.value });
220
}
0 commit comments