Skip to content

Commit

Permalink
Merge pull request #3615 from IgniteUI/SAndreeva/fix-bug-3599-m
Browse files Browse the repository at this point in the history
fix(filtering): chips creation while typing in JP on Edge
  • Loading branch information
kdinev committed Jan 16, 2019
2 parents c773ec6 + aebabf2 commit a58a2af
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -24,7 +24,7 @@ import { IChipSelectEventArgs, IBaseChipEventArgs, IgxChipsAreaComponent, IgxChi
import { ExpressionUI } from './grid-filtering.service';
import { IgxDropDownItemComponent } from '../../drop-down/drop-down-item.component';
import { IgxFilteringService } from './grid-filtering.service';
import { KEYS } from '../../core/utils';
import { KEYS, isEdge } from '../../core/utils';
import { AbsoluteScrollStrategy } from '../../services/overlay/scroll';

/**
Expand Down Expand Up @@ -286,7 +286,7 @@ 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() || this.isKeyPressed) {
this.value = eventArgs.target.value;
}
}
Expand Down

0 comments on commit a58a2af

Please sign in to comment.