Skip to content

Commit

Permalink
fix(radio): remove debugger statement
Browse files Browse the repository at this point in the history
  • Loading branch information
hirsch committed Sep 28, 2021
1 parent 5d31e89 commit c555113
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/components/src/components/bal-radio/bal-radio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ export class Radio implements ComponentInterface {
@Listen('click', { capture: true, target: 'document' })
listenOnClick(ev: UIEvent) {
if (this.disabled && ev.target && (ev.target === this.el || isDescendant(this.el, ev.target as HTMLElement))) {
debugger
ev.preventDefault()
ev.stopPropagation()
}
Expand Down

0 comments on commit c555113

Please sign in to comment.