Skip to content

Commit

Permalink
fix(VStepper): do not spread raw property onto VStepperItem
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed May 8, 2024
1 parent 767ecdc commit 3d9deb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VStepper/VStepper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export const VStepper = genericComponent<VStepperSlots>()({
>
{ hasHeader && (
<VStepperHeader key="stepper-header">
{ items.value.map((item, index) => (
{ items.value.map(({ raw, ...item }, index) => (
<>
{ !!index && (<VDivider />) }

Expand Down

0 comments on commit 3d9deb7

Please sign in to comment.