Merge branch 'hotfix/1.9.5' into test_audit

This commit is contained in:
gulnaz 2025-02-10 11:59:06 +03:00
commit dc232fc1c9

View file

@ -35,7 +35,7 @@ export class InMemoryStaticGrid extends GridV2 {
protected initGrid() {
super.initGrid();
this.subscription = this.injector.get(ErvuDataService).message.subscribe(value => {
this.rowData = value[this.dataList];
this.rowData = value ? value[this.dataList] : null;
this.initDeferred.promise.then(() => {
this.refreshData();
});