Skip to content

Commit

Permalink
Master row error 2022 1 (#463)
Browse files Browse the repository at this point in the history
* FIX: Changing row in a non-lazy loaded master-detail screen caused an error
  • Loading branch information
JindrichSusen committed Apr 19, 2022
1 parent 5ada817 commit 235926a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ export class DataViewLifecycle implements IDataViewLifecycle {

onSelectedRowIdChangeImm = flow(
function*(this: DataViewLifecycle) {
if(!isLazyLoading(this)){
return;
}
const dataView = getDataView(this);
try {
this.monitor.inFlow++;
Expand Down

0 comments on commit 235926a

Please sign in to comment.