Skip to content

Commit 80309a9

Browse files
committed
chore(*): fix tslint #8562
1 parent 49e53c0 commit 80309a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/grid/grid-filtering-ui.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5334,7 +5334,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
53345334
});
53355335

53365336
const dates = fix.componentInstance.data.filter(d => d.ReleaseDate !== null && d.ReleaseDate !== undefined)
5337-
.map(el => new Date(el.ReleaseDate)).sort((a, b) => a - b);
5337+
.map(el => new Date(el.ReleaseDate)).sort((a, b) => a - b);
53385338
fix.detectChanges();
53395339

53405340
// Open excel style custom filtering dialog and wait a bit.

0 commit comments

Comments
 (0)