Skip to content

Commit

Permalink
fix(search): renaming private member #3637
Browse files Browse the repository at this point in the history
  • Loading branch information
DiyanDimitrov committed Jan 17, 2019
1 parent 1a873a0 commit 5b41712
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions projects/igniteui-angular/src/lib/grids/cell.component.ts
Expand Up @@ -270,10 +270,10 @@ export class IgxGridCellComponent implements OnInit, AfterViewInit {
const result = editableCell ? this.cellID.rowID === editableCell.cellID.rowID &&
this.cellID.columnID === editableCell.cellID.columnID : false;

if (result && !this._cellEditMode && this.highlight && this.grid.lastSearchInfo.searchText) {
if (result && !this._inEditMode && this.highlight && this.grid.lastSearchInfo.searchText) {
this.highlight.observe();
}
this._cellEditMode = result;
this._inEditMode = result;

return result;
}
Expand Down Expand Up @@ -498,7 +498,7 @@ export class IgxGridCellComponent implements OnInit, AfterViewInit {
private cellSelectionID: string;
private prevCellSelectionID: string;
private previousCellEditMode = false;
private _cellEditMode: boolean;
private _inEditMode: boolean;

constructor(
public gridAPI: GridBaseAPIService<IgxGridBaseComponent>,
Expand Down

0 comments on commit 5b41712

Please sign in to comment.