This question has been asked/answered (mostly) before, BUT I\'ve tried three things to stop the event from bubbling but nothing has worked:
return false; e.stopPr
I had this issue using Angular 11 EventEmitters. I solved it by creating a new instance of my event emitter whenever the event is triggered.
@Output() keypress = new EventEmitter(); onKeyPress(event) { this.keypress = new EventEmitter(); this.keypress.emit(event); }