Skip to content

Commit

Permalink
fix(VOtpInput): add color, bgColor, and baseColor to defaults provider
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Oct 4, 2023
1 parent cc03fa5 commit afd6a58
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/vuetify/src/labs/VOtpInput/VOtpInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ export const VOtpInput = genericComponent<VOtpInputSlots>()({

provideDefaults({
VField: {
color: computed(() => props.color),
bgColor: computed(() => props.color),
baseColor: computed(() => props.baseColor),
disabled: computed(() => props.disabled),
error: computed(() => props.error),
variant: computed(() => props.variant),
Expand Down

0 comments on commit afd6a58

Please sign in to comment.