Skip to content

Commit

Permalink
FIX: Workflows with screens were throwing an error after reload (#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
JindrichSusen committed Apr 19, 2022
1 parent c00685b commit 37e46aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend-html/src/model/entities/FormScreen.ts
Expand Up @@ -271,7 +271,7 @@ export class FormScreenEnvelope implements IFormScreenEnvelope {
yield*this.formScreenLifecycle.start(initUIResult);
if (this.formScreen) {
this.formScreen.setDirty(!!preloadIsDirty);
if(preloadIsDirty){
if(preloadIsDirty && isLazyLoading(this.formScreen)){
yield*this.loadDirtyRow(this.formScreen);
}
}
Expand Down

0 comments on commit 37e46aa

Please sign in to comment.