Skip to content

Commit

Permalink
fix(VTreeview): lines prop supports boolean type (#19668)
Browse files Browse the repository at this point in the history
fixes #19638
  • Loading branch information
lzl0304 authored May 6, 2024
1 parent fce7f75 commit 330baa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VList/VListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const makeVListItemProps = propsFactory({
appendIcon: IconValue,
baseColor: String,
disabled: Boolean,
lines: String as PropType<'one' | 'two' | 'three'>,
lines: [Boolean, String] as PropType<'one' | 'two' | 'three' | false>,
link: {
type: Boolean,
default: undefined,
Expand Down

0 comments on commit 330baa0

Please # to comment.