Skip to content

Commit

Permalink
fix(cv-button): fix CvButton stories, where buttons are blank (label …
Browse files Browse the repository at this point in the history
…is not shown)
  • Loading branch information
OlkaB committed Jul 12, 2023
1 parent 1a02db8 commit 1937f82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/CvButton/CvButton.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Secondary.parameters = storyParametersObject(

export const Field = Template.bind({});
Field.args = {
'slotArgs.default': 'Field size',
default: 'Field size',
size: 'field',
};
Field.parameters = storyParametersObject(
Expand All @@ -98,7 +98,7 @@ Field.parameters = storyParametersObject(

export const Small = Template.bind({});
Small.args = {
'slotArgs.default': 'sm',
default: 'sm',
size: 'sm',
};
Small.parameters = storyParametersObject(
Expand All @@ -109,7 +109,7 @@ Small.parameters = storyParametersObject(

export const Large = Template.bind({});
Large.args = {
'slotArgs.default': 'Large size',
default: 'Large size',
size: 'lg',
};
Large.parameters = storyParametersObject(
Expand Down

0 comments on commit 1937f82

Please sign in to comment.