Skip to content

Commit

Permalink
Merge pull request #323 from PrestaShopCorp/fix/props-alert-stories
Browse files Browse the repository at this point in the history
docs: disable-border props alert in stories + id not required for tag
  • Loading branch information
mattgoud authored Mar 19, 2024
2 parents 9a2f2b1 + 3412193 commit e5dab64
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 e5dab64

Please sign in to comment.