Skip to content

Commit

Permalink
fix: disable-border props alert in stories + id not required for tag
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-carangeot committed Mar 19, 2024
1 parent 9a2f2b1 commit 3412193
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/components/alert/stories/alert.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ export const Warning: StoryObj = {
<puik-alert
title="Title"
variant="warning"
:disabled-borders="true|false"
:disable-borders="true|false"
button-label="Button"
@click="click"
>
Expand Down Expand Up @@ -358,7 +358,7 @@ export const Info: StoryObj = {
<puik-alert
title="Title"
variant="info"
:disabled-borders="true|false"
:disable-borders="true|false"
button-label="Button"
@click="click"
>
Expand Down Expand Up @@ -407,7 +407,7 @@ export const Danger: StoryObj = {
<puik-alert
title="Title"
variant="danger"
:disabled-borders="true|false"
:disable-borders="true|false"
button-label="Button"
@click="click"
>
Expand Down
2 changes: 1 addition & 1 deletion packages/components/tag/src/tag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export type PuikTagSizeVariant = (typeof tagSizeVariants)[number]
export const tagProps = buildProps({
id: {
type: String,
required: true,
required: false,
default: undefined,
},
content: {
Expand Down

0 comments on commit 3412193

Please sign in to comment.