From d0124a4af13407dc64d5f23a56b5764a2019559c Mon Sep 17 00:00:00 2001
From: JesmoDev <26099018+JesmoDev@users.noreply.github.com>
Date: Fri, 23 Aug 2024 16:29:54 +0200
Subject: [PATCH] cleanup
---
.../lib/uui-card-block-type.stories.ts | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/packages/uui-card-block-type/lib/uui-card-block-type.stories.ts b/packages/uui-card-block-type/lib/uui-card-block-type.stories.ts
index cb4f8f427..ea9bb58a0 100644
--- a/packages/uui-card-block-type/lib/uui-card-block-type.stories.ts
+++ b/packages/uui-card-block-type/lib/uui-card-block-type.stories.ts
@@ -17,6 +17,12 @@ const meta: Meta = {
description: 'Description',
slot: html``,
},
+ argTypes: {
+ background: { control: { type: 'color' } },
+ slot: { control: { disable: true } },
+ tag: { control: { disable: true } },
+ actions: { control: { disable: true } },
+ },
// prettier-ignore
render: args => html`
@@ -33,12 +39,6 @@ const meta: Meta = {
${Story()}
`,
],
- argTypes: {
- background: { control: { type: 'color' } },
- slot: { control: { disable: true } },
- tag: { control: { disable: true } },
- actions: { control: { disable: true } },
- },
};
export default meta;