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 b97c6bd commit 7f4afa9Copy full SHA for 7f4afa9
src/fields/fieldNoUiSlider.vue
@@ -38,8 +38,8 @@
38
ready() {
39
if (window.noUiSlider) {
40
this.slider = this.$el;
41
- window.noUiSlider.create(this.slider, defaults(this.schema.sliderOptions || {}, {
42
- start: this.value != null ? this.value : this.schema.min,
+ window.noUiSlider.create(this.slider, defaults(this.schema.noUiSliderOptions || {}, {
+ start: this.getStartValue(),
43
range: {
44
"min": this.schema.min,
45
"max": this.schema.max
0 commit comments