diff --git a/app/stories/pix-table.mdx b/app/stories/pix-table.mdx index 098b70e4d..0de98ffc7 100644 --- a/app/stories/pix-table.mdx +++ b/app/stories/pix-table.mdx @@ -22,7 +22,7 @@ Une table qui prend en argument des data et en `block content` des [PixTableColu {{row.name}} - + <:header> Description @@ -30,28 +30,26 @@ Une table qui prend en argument des data et en `block content` des [PixTableColu {{row.description}} - + <:header> Age <:cell> - il a {{row.age}} - ans <:header> - Info + Stars <:cell> - + ``` diff --git a/app/stories/pix-table.stories.js b/app/stories/pix-table.stories.js index ae0616488..50b316d5f 100644 --- a/app/stories/pix-table.stories.js +++ b/app/stories/pix-table.stories.js @@ -44,7 +44,7 @@ const Template = (args) => { return { template: hbs` <:columns as |row context|> - + <:header> Nom @@ -52,7 +52,7 @@ const Template = (args) => { {{row.name}} - + <:header> Description @@ -60,29 +60,19 @@ const Template = (args) => { {{row.description}} - + <:header> Age <:cell> - il a {{row.age}} - ans - - - - <:header> - Info - - <:cell> - {{! template-lint-disable no-forbidden-elements}} `, context: args, };