Skip to content

Commit

Permalink
fix: text area story
Browse files Browse the repository at this point in the history
  • Loading branch information
rjborba committed Jul 22, 2024
1 parent 89b7f12 commit 70446cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/storybook/stories/internal/orama-textarea.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ export default meta
type Story = StoryObj<Components.OramaTextarea>

export const TextArea: Story = {
render: ({ ...args }) =>
render: ({ minRows, maxRows, placeholder }) =>
html`
<orama-textarea ${spread(args)}>
<orama-textarea min-rows="${minRows}" max-rows="${maxRows}" placeholder="${placeholder}">
<div slot="adornment-start"><button>Start</button></div>
<div slot="adornment-end"><button>End</button></div>
</orama-textarea>
Expand Down

0 comments on commit 70446cb

Please sign in to comment.