Skip to content

Commit

Permalink
chore: added missing type (#2535)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke authored May 23, 2024
1 parent f3177d4 commit 675e0f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export class DbInput {
data-variant={this.variant}
onChange={(event) => this.handleChange(event)}
onInput={(event) => {
this.valueSize = event.target.value.length;
this.valueSize = (event.target as HTMLInputElement).value.length;
}}
/>

Expand Down

0 comments on commit 675e0f3

Please sign in to comment.