From 8733fd952a20311b94748274fc65dcae07af0ed4 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sun, 9 Feb 2025 12:00:38 +0700 Subject: [PATCH] feat(ui): add new story --- .../tags-selector.component.stories.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/libs/ui/src/lib/tags-selector/tags-selector.component.stories.ts b/libs/ui/src/lib/tags-selector/tags-selector.component.stories.ts index 4fd0f7e77..8d1431b46 100644 --- a/libs/ui/src/lib/tags-selector/tags-selector.component.stories.ts +++ b/libs/ui/src/lib/tags-selector/tags-selector.component.stories.ts @@ -47,6 +47,20 @@ export const Default: Story = { } }; +export const CreateCustomTags: Story = { + args: { + hasPermissionToCreateTags: true, + tags: [ + { + id: 'EMERGENCY_FUND', + name: 'Emergency Fund', + userId: null + } + ], + tagsAvailable: OPTIONS + } +}; + export const Readonly: Story = { args: { readonly: true,