Skip to content

Commit

Permalink
fix(ButtonGroup): invalid size validator
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Jun 6, 2023
1 parent a6903df commit a617672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/components/elements/ButtonGroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default defineComponent({
type: String,
default: null,
validator (value: string) {
return Object.keys(appConfig.ui.avatar.size).includes(value)
return Object.keys(appConfig.ui.button.size).includes(value)
}
},
ui: {
Expand Down

1 comment on commit a617672

@vercel
Copy link

@vercel vercel bot commented on a617672 Jun 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ui – ./

ui-git-dev-nuxtlabs.vercel.app
ui.nuxtlabs.com
ui-nuxtlabs.vercel.app

Please sign in to comment.