SUPPORT-8889: fix grid row data init

This commit is contained in:
gulnaz 2025-02-10 11:58:39 +03:00
parent d22fa8986c
commit 40ceabd3fc

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();
});