From 7baf4f72ac9a2e3812b6a8130e9711706f4c8bf9 Mon Sep 17 00:00:00 2001 From: leekelleher Date: Thu, 11 Jan 2024 08:54:19 +0000 Subject: [PATCH] Updated the `value` data structure the story --- .../uis/tiny-mce/property-editor-ui-tiny-mce.stories.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/tiny-mce/property-editor-ui-tiny-mce.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/tiny-mce/property-editor-ui-tiny-mce.stories.ts index 14e5bbd6b5..b7671b7cde 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/tiny-mce/property-editor-ui-tiny-mce.stories.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/tiny-mce/property-editor-ui-tiny-mce.stories.ts @@ -80,7 +80,9 @@ const meta: Meta = { id: 'umb-property-editor-ui-tiny-mce', args: { config: undefined, - value: ` + value: { + blocks: {}, + markup: `

TinyMCE

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

@@ -92,6 +94,7 @@ const meta: Meta = { Umbraco documentation

`, + }, }, };