Skip to content

Commit

Permalink
chore(*): fix lint errros
Browse files Browse the repository at this point in the history
  • Loading branch information
Volen99 committed Oct 1, 2021
1 parent 58aebb3 commit 5fed227
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ import {
Action,
} from '../services/public_api';
import { GridBaseAPIService } from './api.service';
import { IgxGridCellComponent } from './cell.component';
import { ISummaryExpression } from './summaries/grid-summary';
import { RowEditPositionStrategy, IPinningConfig } from './grid.common';
import { IgxGridToolbarComponent } from './toolbar/grid-toolbar.component';
Expand Down Expand Up @@ -156,7 +155,6 @@ import { IgxPaginatorComponent } from '../paginator/paginator.component';
import { IgxGridHeaderRowComponent } from './headers/grid-header-row.component';
import { IgxGridGroupByAreaComponent } from './grouping/grid-group-by-area.component';
import { IgxFlatTransactionFactory, TRANSACTION_TYPE } from '../services/transaction/transaction-factory.service';
import {IgxGridRow} from "./grid-public-row";

let FAKE_ROW_ID = -1;
const DEFAULT_ITEMS_PER_PAGE = 15;
Expand Down Expand Up @@ -4811,7 +4809,7 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
if (this.gridAPI.grid) {
this.notifyChanges();
this.cdr.detectChanges();
this.rowPinned.emit(eventArgs)
this.rowPinned.emit(eventArgs);
}

return true;
Expand Down

0 comments on commit 5fed227

Please sign in to comment.