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 5dac1d8 commit 7c0be69Copy full SHA for 7c0be69
packages/vue/src/components/range/DynamicRangeSlider.jsx
@@ -320,7 +320,7 @@ const DynamicRangeSlider = {
320
},
321
322
render() {
323
- if (!this.range || !this.currentValue) {
+ if (!this.range || !this.currentValue || this.range.start === null || this.range.end === null || this.range.start === this.range.end) {
324
return null;
325
}
326
const { start, end } = this.range;
0 commit comments