Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Delete change event from input listeners
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasHirt committed May 25, 2020
1 parent 4f38a86 commit 5d02b78
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/elements/OcTextInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,13 @@ export default {
},
$_ocTextInput_listeners() {
const listeners = this.$listeners
// Delete listeners for events which are emitted via methods
delete(listeners["input"])
delete(listeners["focus"])
delete(listeners["keydown"])
delete(listeners["change"])
return listeners
}
},
Expand Down

0 comments on commit 5d02b78

Please sign in to comment.