From 8d4e5cd60309c163bc160b99f3d13618adc21800 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Tue, 1 Aug 2023 14:20:44 +0200 Subject: [PATCH] add source code --- .../localization/localize.element.stories.ts | 27 ++++++++++++++----- 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/localization/localize.element.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/core/localization/localize.element.stories.ts index ae2ed56aa3..2973a22ebf 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/localization/localize.element.stories.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/localization/localize.element.stories.ts @@ -23,6 +23,13 @@ const meta: Meta = { `; }, ], +}; + +export default meta; + +type Story = StoryObj; + +export const Default: Story = { parameters: { docs: { source: { @@ -32,17 +39,18 @@ const meta: Meta = { }, }; -export default meta; - -type Story = StoryObj; - -export const Overview: Story = {}; - export const WithArguments: Story = { args: { key: 'blueprints_createdBlueprintMessage', args: ['About us'], }, + parameters: { + docs: { + source: { + code: ``, + }, + }, + }, }; export const KeyNotFound: Story = { @@ -50,4 +58,11 @@ export const KeyNotFound: Story = { key: 'general_ok_not_found', debug: true, }, + parameters: { + docs: { + source: { + code: ``, + }, + }, + }, };