Skip to content

Commit

Permalink
fix(VBtn): allow passing custom ripple options (#20190)
Browse files Browse the repository at this point in the history
fixes #20189
  • Loading branch information
EvgenyWas authored Jul 28, 2024
1 parent c264ad4 commit 0a31bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VBtn/VBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ export const VBtn = genericComponent<VBtnSlots>()({
</Tag>,
[[
Ripple,
!isDisabled.value && !!props.ripple,
!isDisabled.value && props.ripple,
'',
{ center: !!props.icon },
]]
Expand Down

0 comments on commit 0a31bf8

Please sign in to comment.