Skip to content

Radio button doesn't work in Node #425

Closed
@kara

Description

@kara

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
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions