Skip to content

Commit caa8719

Browse files
authoredFeb 16, 2023
fix(input): compositionend event is removed on unmount (#26806)
resolves #26805
1 parent 89ad631 commit caa8719

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎core/src/components/input/input.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ export class Input implements ComponentInterface {
298298
const nativeInput = this.nativeInput;
299299
if (nativeInput) {
300300
nativeInput.removeEventListener('compositionstart', this.onCompositionStart);
301-
nativeInput.removeEventListener('compositionEnd', this.onCompositionEnd);
301+
nativeInput.removeEventListener('compositionend', this.onCompositionEnd);
302302
}
303303
}
304304

0 commit comments

Comments
 (0)
Please sign in to comment.