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 f89bad2 commit 76ac031Copy full SHA for 76ac031
src/components/Stepper.vue
@@ -16,7 +16,7 @@
16
v-for="(step, stepIndex) in stepNames"
17
v-bind:active-icon="activeIcon(currentStepIndex > stepIndex && errorPerStep[step].value, step)"
18
v-bind:aria-label="toLabel(step)"
19
- v-bind:caption="stepIndex < 2 ? 'required' : 'optional'"
+ v-bind:caption="stepIndex < 2 ? 'required' : (step !== 'finish' ? 'optional' : '')"
20
v-bind:data-cy="`step-${step}`"
21
v-bind:done="screenVisited(step) && !errorPerStep[step].value"
22
v-bind:error="currentStepIndex != stepIndex && screenVisited(step) && errorPerStep[step].value"
0 commit comments