Skip to content

Commit

Permalink
Fix access level stories
Browse files Browse the repository at this point in the history
  • Loading branch information
allanlasser committed Apr 16, 2024
1 parent 6260575 commit a6253e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/components/inputs/stories/AccessLevel.stories.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
};
let args = {
level: "private",
selected: "private",
};
</script>

Expand All @@ -19,6 +19,6 @@
</Template>

<Story name="Private" {args} />
<Story name="Organization" args={{ ...args, level: "organization" }} />
<Story name="Public" args={{ ...args, level: "public" }} />
<Story name="Organization" args={{ ...args, selected: "organization" }} />
<Story name="Public" args={{ ...args, selected: "public" }} />
<Story name="Row" args={{ ...args, direction: "row" }} />

0 comments on commit a6253e5

Please sign in to comment.