Skip to content

Commit c7f8869

Browse files
Update datagrid.component.ts
1 parent 499dcfd commit c7f8869

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/module/data/datagrid/datagrid.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,8 @@ export class AmexioDatagridComponent implements OnInit, OnDestroy, AfterContentI
374374
totalPages: number;
375375

376376
filterResultData: any;
377-
377+
378+
filterCloneData1: any;
378379
/*global filter column attribute*/
379380

380381
filterValue: any;
@@ -616,7 +617,7 @@ export class AmexioDatagridComponent implements OnInit, OnDestroy, AfterContentI
616617
this.commonMethod(this.cloneData, groups);
617618
}
618619
if (this.enabledatafilter) {
619-
this.filterCloneData = JSON.parse(JSON.stringify(this.data));
620+
this.filterCloneData1 = JSON.parse(JSON.stringify(this.data));
620621
}
621622
if (this.globalfilter) {
622623
this.filterCloneData = JSON.parse(JSON.stringify(this.data));

0 commit comments

Comments
 (0)