Skip to content

Commit

Permalink
Fix the mask feature in AuInput
Browse files Browse the repository at this point in the history
This was accidentally broken in the last PR after a last minute rename 😬.
  • Loading branch information
Windvis committed Sep 13, 2023
1 parent 5e09023 commit 226d253
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/components/au-input.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
disabled={{@disabled}}
...attributes
{{on "input" this.handleChange}}
{{this.inputmaskModifier inputmaskOptions=this.inputmaskOptions}}
{{this.inputmaskModifier options=this.inputmaskOptions}}
/>
{{else}}
<Input
Expand All @@ -34,7 +34,7 @@
disabled={{@disabled}}
...attributes
{{on "input" this.handleChange}}
{{this.inputmaskModifier inputmaskOptions=this.inputmaskOptions}}
{{this.inputmaskModifier options=this.inputmaskOptions}}
/>
{{else}}
<Input
Expand Down

0 comments on commit 226d253

Please sign in to comment.