-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
checkbox fix for #575 #582
Conversation
@sendilkumarn Can you title your PRs such that it's clear what they're doing, and include some description that has a high level summary of your changes and why they fix the issue? Seeing just "checkbox fix" makes it more difficult to review. |
@@ -11,7 +11,8 @@ | |||
[attr.aria-labelledby]="ariaLabelledby" | |||
(focus)="onInputFocus()" | |||
(blur)="onInputBlur()" | |||
(change)="onInteractionEvent($event)"> | |||
(change)="onInteractionEvent($event)" | |||
(click)="onInteractionEvent($event)"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't seem right. What is the underlying bug you're trying to address?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
upon clicking, checkbox fires click function twice. Ideally it should fire it once right?
This change will also need a unit test. |
For PR - I will :) Unit Test, I totally forgot. I will add it by today. |
I will close this PR and add another. sorry for any inconvienience |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
#575