-
Notifications
You must be signed in to change notification settings - Fork 162
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
fix(filtering): chips creation while typing in JP on Edge #3616
Conversation
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 way the value will always update, no matter what the result of the 'if statement' is. As a result #3504 is now reproducible.
@@ -286,7 +286,9 @@ export class IgxGridFilteringRowComponent implements AfterViewInit { | |||
public onInput(eventArgs) { | |||
// The 'iskeyPressed' flag is needed for a case in IE, because the input event is fired on focus and for some reason, | |||
// when you have a japanese character as a placeholder, on init the value here is empty string . | |||
if (this.isKeyPressed) { | |||
if (isEdge()) { |
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.
You can combine the two if clauses as their blocks are the same.
Closes #3599
Additional information (check all that apply):
Checklist:
NOTE:
Please check #3504 again to make sure we have not regressed it.