Skip to content

Commit

Permalink
Fix: React page use visible property to decide render or not instead …
Browse files Browse the repository at this point in the history
…of isVisible #3283
  • Loading branch information
andrewtelnov committed Sep 8, 2021
1 parent 8b2a2f4 commit bfa1269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/react/panel-base.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class SurveyPanelBase extends SurveyElementBase<any, any> {
super.canRender() &&
!!this.survey &&
!!this.panelBase &&
this.panelBase.visible &&
this.panelBase.isVisible &&
!!this.panelBase.survey
);
}
Expand Down

0 comments on commit bfa1269

Please sign in to comment.