From 29f3ba02c906e4a853e96f84f75a770e963e8e3d Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Thu, 18 Jan 2024 10:11:35 +0100 Subject: [PATCH] fix storybook build --- ...i-block-type-group-configuration.stories.ts | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/block/block-type/property-editors/block-type-group-configuration/property-editor-ui-block-type-group-configuration.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/block/block-type/property-editors/block-type-group-configuration/property-editor-ui-block-type-group-configuration.stories.ts index b980264f2a..66ccdfa84e 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/block/block-type/property-editors/block-type-group-configuration/property-editor-ui-block-type-group-configuration.stories.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/block/block-type/property-editors/block-type-group-configuration/property-editor-ui-block-type-group-configuration.stories.ts @@ -1,15 +1,19 @@ -import { Meta, Story } from '@storybook/web-components'; +import { Meta, StoryObj } from '@storybook/web-components'; import type { UmbPropertyEditorUIBlockGridGroupConfigurationElement } from './property-editor-ui-block-type-group-configuration.element.js'; import { html } from '@umbraco-cms/backoffice/external/lit'; -import './property-editor-ui-block-grid-group-configuration.element.js'; +import './property-editor-ui-block-type-group-configuration.element.js'; -export default { +const meta: Meta = { title: 'Property Editor UIs/Block Grid Group Configuration', component: 'umb-property-editor-ui-block-type-group-configuration', id: 'umb-property-editor-ui-block-type-group-configuration', -} as Meta; +}; -export const AAAOverview: Story = () => - html``; -AAAOverview.storyName = 'Overview'; +export default meta; +type Story = StoryObj; + +export const Overview: Story = { + render: () => + html``, +};