Skip to content

Commit

Permalink
Fix functional test in Angular
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Dec 16, 2024
1 parent c917425 commit 69327c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/survey-core/src/survey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4412,6 +4412,7 @@ export class SurveyModel extends SurveyElementCore
cPage.dispose();
this.pageContainerValue = undefined;
};
this.getAllQuestions().forEach(q => q.updateElementVisibility());
const singleName = "single-page";
const previewName = "preview-page";
let rootPage: PageModel = undefined;
Expand Down Expand Up @@ -4445,7 +4446,6 @@ export class SurveyModel extends SurveyElementCore
this.changeCurrentPageFromPreview = false;
}
}
this.getAllQuestions().forEach(q => q.updateElementVisibility());
this.pages.forEach(page => {
if(page.hasShown) {
page.updateElementCss(true);
Expand Down

0 comments on commit 69327c9

Please sign in to comment.