Added prevent default to stop propagation directive

This commit is contained in:
Adina Țeudan 2024-03-22 00:17:13 +02:00
parent 48a5160d6f
commit b6813bccf3

View File

@ -20,6 +20,7 @@ export class StopPropagationDirective {
if (this.iqserStopPropagation) {
this.#logger.info('[CLICK] iqserStopPropagation');
$event.preventDefault();
$event.stopPropagation();
}
}