From faf87d65a0b16fd6747755db7d933d3d1485d4aa Mon Sep 17 00:00:00 2001 From: ClaudiaHolhos Date: Wed, 8 Jun 2022 17:41:13 +0300 Subject: [PATCH] story fix --- src/components/@shared/AssetType/index.stories.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/components/@shared/AssetType/index.stories.tsx b/src/components/@shared/AssetType/index.stories.tsx index 8111ffc03..0cb986e12 100644 --- a/src/components/@shared/AssetType/index.stories.tsx +++ b/src/components/@shared/AssetType/index.stories.tsx @@ -15,8 +15,14 @@ interface Props { args: AssetTypeProps } -export const Default: Props = Template.bind({}) -Default.args = { - type: 'compute', +export const Dataset: Props = Template.bind({}) +Dataset.args = { + type: 'dataset', accessType: 'access' } + +export const Algorithm: Props = Template.bind({}) +Algorithm.args = { + type: 'algorithm', + accessType: 'compute' +}