Skip to content

Commit

Permalink
fix(input): dont remove eventlistener on blur/focus
Browse files Browse the repository at this point in the history
  • Loading branch information
igorwessel committed Oct 23, 2024
1 parent 54c0ed7 commit adb8d44
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/core/src/components/input/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,10 @@ export class AtomInput {
}

private handleBlur = () => {
this.inputEl.removeEventListener('ionBlur', this.handleBlur)
this.atomBlur.emit()
}

private handleFocus = () => {
this.inputEl.removeEventListener('ionFocus', this.handleFocus)
this.atomFocus.emit()
}

Expand Down

0 comments on commit adb8d44

Please sign in to comment.