Closed
Description
Radio button's component class refers to the Event global here, using a HostListener:
@HostListener('click', ['$event'])
onClick(event: Event) {
if (this.disabled) {
event.preventDefault();
event.stopPropagation();
return;
}
This doesn't work in Node. Will need to switch to using the host
object format.
Metadata
Metadata
Assignees
Labels
No labels