Skip to content

Commit

Permalink
chore(search-input): use Ember Input component
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbertrand committed Feb 26, 2024
1 parent 953b76c commit 64834d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addon/components/pix-search-input.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@

<div class="pix-search-input__input-container">
<FaIcon @icon="magnifying-glass" />
<input
<Input
id={{this.searchInputId}}
class="pix-search-input__input"
name={{@inputName}}
placeholder={{@placeholder}}
value={{this.initialValue}}
oninput={{this.onSearch}}
@value={{this.initialValue}}
{{on "input" this.onSearch}}
...attributes
/>
</div>
Expand Down

0 comments on commit 64834d8

Please sign in to comment.