Skip to content

Commit 46dae05

Browse files
committed
do not use another compute array for labels since of a different indexing
1 parent 8e95515 commit 46dae05

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

packages/vue-vuetify/src/layouts/CategorizationStepperRenderer.vue

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
:key="`${layout.path}-${entry.originalIndex}`"
4040
>
4141
<v-stepper-item :value="entry.originalIndex + 1" editable>
42-
{{ visibleCategoryLabels[entry.originalIndex] }}
42+
{{ entry.category.value.label }}
4343
</v-stepper-item>
4444
<v-divider
4545
v-if="
@@ -142,11 +142,6 @@ const layoutRenderer = defineComponent({
142142
}))
143143
.filter((e) => e.category.value.visible);
144144
},
145-
visibleCategoryLabels(): string[] {
146-
return this.visibleCategoriesWithIndex.map((element) => {
147-
return element.category.value.label;
148-
});
149-
},
150145
},
151146
});
152147

0 commit comments

Comments
 (0)