Skip to content

Commit

Permalink
Don't show poll at wifi access in autopilot (#4223)
Browse files Browse the repository at this point in the history
  • Loading branch information
reiterl authored Oct 10, 2024
1 parent 19e4d85 commit f73fbe3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ export class AutopilotComponent extends BaseMeetingComponent implements OnInit {
}

public get showPollCollection(): boolean {
return this._currentProjection?.type !== `agenda_item_list`;
return (
this._currentProjection?.type !== `agenda_item_list` && this._currentProjection?.type !== `wifi_access_data`
);
}

public get projectorTitle(): string {
Expand Down

0 comments on commit f73fbe3

Please sign in to comment.