diff options
Diffstat (limited to 'packages/frontend/src/components/MkChartLegend.stories.ts')
| -rw-r--r-- | packages/frontend/src/components/MkChartLegend.stories.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/components/MkChartLegend.stories.ts b/packages/frontend/src/components/MkChartLegend.stories.ts index fcc39a6a46..62186992bb 100644 --- a/packages/frontend/src/components/MkChartLegend.stories.ts +++ b/packages/frontend/src/components/MkChartLegend.stories.ts @@ -1,9 +1,9 @@ -import { Meta, Story } from '@storybook/vue3'; +import { Meta, StoryObj } from '@storybook/vue3'; import MkChartLegend from './MkChartLegend.vue'; const meta = { title: 'components/MkChartLegend', component: MkChartLegend, -}; +} satisfies Meta<typeof MkChartLegend>; export const Default = { render(args, { argTypes }) { return { @@ -17,5 +17,5 @@ export const Default = { parameters: { layout: 'centered', }, -}; +} satisfies StoryObj<typeof MkChartLegend>; export default meta; |