Skip to content

Commit

Permalink
fix(VStepperVertical/Item): apply fixes made to v-stepper in master
Browse files Browse the repository at this point in the history
duplicating updates made in these commits:
34bb202
3d9deb7
  • Loading branch information
johnleider committed May 9, 2024
1 parent 0cea628 commit 1745d7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -112,7 +112,7 @@ export const VStepperVertical = genericComponent<VStepperVerticalSlots>()({
}) => {
return (
<>
{ items.value.map(item => (
{ items.value.map(({ raw, ...item }) => (
<VStepperVerticalItem { ...item }>
{{
...slots,
Expand Down
Expand Up @@ -65,7 +65,7 @@ export const VStepperVerticalItem = genericComponent<VStepperVerticalItemSlots>(
const icon = computed(() => {
if (hasError.value) return props.errorIcon
if (hasCompleted.value) return props.completeIcon
if (props.editable && !props.icon) return props.editIcon
if (groupItem.value?.isSelected.value && props.editable) return props.editIcon

return props.icon
})
Expand Down

0 comments on commit 1745d7f

Please sign in to comment.