Skip to content

Commit

Permalink
chore(DsfrCard): ✏️ fix typo in stories
Browse files Browse the repository at this point in the history
  • Loading branch information
laruiss committed Sep 4, 2023
1 parent c65e6a3 commit e9b826d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ module.exports = {
{
files: ['**/*.ts?(x)'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
rules: {
semi: ['error', 'never'],
quotes: [2, 'single'],
Expand Down
10 changes: 5 additions & 5 deletions src/components/DsfrCard/DsfrCard.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export const CardSansFleche = (args) => ({
:size="size"
:title="title"
:horizontal="horizontal"
:download: false,
:download="download",
:no-arrow="noArrow"
/>
`,
Expand Down Expand Up @@ -158,7 +158,7 @@ export const CardAvecBoutons = (args) => ({
:size="size"
:title="title"
:horizontal="horizontal"
:download: false,
:download="download",
:no-arrow="noArrow"
/>
`,
Expand Down Expand Up @@ -204,7 +204,7 @@ export const CardAvecLiens = (args) => ({
:size="size"
:title="title"
:horizontal="horizontal"
:download: false,
:download="download",
:no-arrow="noArrow"
/>
`,
Expand Down Expand Up @@ -249,7 +249,7 @@ export const CardHorizontaleAvecBoutons = (args) => ({
:size="size"
:title="title"
:horizontal="horizontal"
:download: false,
:download="download",
:no-arrow="noArrow"
/>
`,
Expand Down Expand Up @@ -295,7 +295,7 @@ export const CardHorizontaleEtSmallAvecLiens = (args) => ({
:size="size"
:title="title"
:horizontal="horizontal"
:download: false,
:download="download",
:no-arrow="noArrow"
/>
`,
Expand Down

0 comments on commit e9b826d

Please sign in to comment.