From d9d23ce1d394d165df8cbaa015ea08fc2bc6a608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Tue, 20 Dec 2022 16:49:49 +0100 Subject: [PATCH] out comment story --- .../edit/workspace-view-data-type-edit.stories.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/data-type/views/edit/workspace-view-data-type-edit.stories.ts b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/data-type/views/edit/workspace-view-data-type-edit.stories.ts index 208419baef..d9fd0c0b1f 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/data-type/views/edit/workspace-view-data-type-edit.stories.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/data-type/views/edit/workspace-view-data-type-edit.stories.ts @@ -1,22 +1,24 @@ import { Meta, Story } from '@storybook/web-components'; import { html } from 'lit-html'; -import { data } from '../../../../../core/mocks/data/data-type.data'; -import { UmbDataTypeContext } from '../../data-type.context'; +//import { data } from '../../../../../core/mocks/data/data-type.data'; import type { UmbWorkspaceViewDataTypeEditElement } from './workspace-view-data-type-edit.element'; import './workspace-view-data-type-edit.element'; +//import { UmbWorkspaceDataTypeContext } from '../../workspace-data-type.context'; export default { title: 'Workspaces/Data Type/Views/Edit', component: 'umb-workspace-view-data-type-edit', id: 'umb-workspace-view-data-type-edit', decorators: [ - (story) => - html` + (story) => { + return html`TODO: make use of mocked workspace context??`; + /*html` ${story()} - `, + `,*/ + } ], } as Meta;