diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editors/uis/tiny-mce/property-editor-ui-tiny-mce.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editors/uis/tiny-mce/property-editor-ui-tiny-mce.stories.ts index 38f354bd5f..cc623647e9 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editors/uis/tiny-mce/property-editor-ui-tiny-mce.stories.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editors/uis/tiny-mce/property-editor-ui-tiny-mce.stories.ts @@ -1,6 +1,7 @@ import type { Meta, StoryObj } from '@storybook/web-components'; import type { UmbPropertyEditorUITinyMceElement } from './property-editor-ui-tiny-mce.element.js'; import { UmbDataTypePropertyCollection } from '@umbraco-cms/backoffice/components'; + import './property-editor-ui-tiny-mce.element.js'; const config = new UmbDataTypePropertyCollection([ @@ -78,7 +79,7 @@ const meta: Meta = { component: 'umb-property-editor-ui-tiny-mce', id: 'umb-property-editor-ui-tiny-mce', args: { - config, + config: undefined, value: `

TinyMCE

I am a default value for the TinyMCE text editor story.

@@ -97,4 +98,10 @@ const meta: Meta = { export default meta; type Story = StoryObj; -export const Overview: Story = {}; +export const Default: Story = {}; + +export const DefaultConfig: Story = { + args: { + config, + }, +};