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 e8b57c8 commit f7ad2baCopy full SHA for f7ad2ba
core/src/components/range/range.tsx
@@ -231,7 +231,7 @@ export class Range implements ComponentInterface {
231
* @param oldVal - The old value.
232
* @returns `true` if the values are different, `false` otherwise.
233
*/
234
- private areValuesDifferent = (newVal: RangeValue, oldVal: RangeValue) => {
+ private compareValues = (newVal: RangeValue, oldVal: RangeValue) => {
235
if (typeof newVal === 'object' && typeof oldVal === 'object') {
236
return newVal.lower !== oldVal.lower || newVal.upper !== oldVal.upper;
237
}
0 commit comments