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 f1e817a commit 4950bbfCopy full SHA for 4950bbf
packages/theme-generator/src/common/components/SegmentSelection/index.vue
@@ -17,7 +17,7 @@
17
<t-slider
18
:min="1"
19
:disabled="disabled"
20
- :max="5"
+ :max="selectOptions.length - 1"
21
:value="step"
22
@change="handleSliderChange"
23
:label="renderLabel"
packages/theme-generator/src/shadow-panel/index.vue
@@ -21,7 +21,7 @@
class="slider-split"
:key="i"
:style="{
24
- opacity: i == 0 || i === selectOptions.length - 1 ? 0 : 1,
+ opacity: i == 0 || i === selectOptions.length - 2 ? 0 : 1,
25
}"
26
v-for="(v, i) in selectOptions.slice(0, selectOptions.length - 1)"
27
></div>
0 commit comments