We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46dae05 commit ccc9ffeCopy full SHA for ccc9ffe
packages/vue-vuetify/src/layouts/CategorizationStepperRenderer.vue
@@ -35,19 +35,14 @@
35
<template v-slot:default="{ prev, next }">
36
<v-stepper-header>
37
<template
38
- v-for="entry in visibleCategoriesWithIndex"
+ v-for="(entry, index) in visibleCategoriesWithIndex"
39
:key="`${layout.path}-${entry.originalIndex}`"
40
>
41
<v-stepper-item :value="entry.originalIndex + 1" editable>
42
{{ entry.category.value.label }}
43
</v-stepper-item>
44
<v-divider
45
- v-if="
46
- entry.originalIndex !==
47
- visibleCategoriesWithIndex[
48
- visibleCategoriesWithIndex.length - 1
49
- ].originalIndex
50
- "
+ v-if="index < visibleCategoriesWithIndex.length - 1"
51
:key="`${layout.path}-divider-${entry.originalIndex}`"
52
></v-divider>
53
</template>
0 commit comments