Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Oct 31, 2023
1 parent ff2c0aa commit c59bc5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/components/content/ComponentCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ let name = props.slug || `U${upperFirst(camelCase(route.params.slug[route.params
if (['AvatarGroup', 'ButtonGroup'].includes(name)) {
name = `U${name}`
}
if (['avatar-group', 'button-group'].includes(name)) {
if (['avatar-group', 'button-group', 'radio'].includes(name)) {
name = `U${upperFirst(camelCase(name))}`
}
Expand Down
2 changes: 1 addition & 1 deletion docs/components/content/ComponentProps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ let name = props.slug || `U${upperFirst(camelCase(route.params.slug[route.params
if (['AvatarGroup', 'ButtonGroup'].includes(name)) {
name = `U${name}`
}
if (['avatar-group', 'button-group'].includes(name)) {
if (['avatar-group', 'button-group', 'radio'].includes(name)) {
name = `U${upperFirst(camelCase(name))}`
}
Expand Down
2 changes: 1 addition & 1 deletion docs/content/3.forms/6.radio-group.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,4 @@ slots:

:component-preset

:component-preset{slug="URadio"}
:component-preset{slug="Radio"}

0 comments on commit c59bc5c

Please sign in to comment.