We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b52909b commit 4295a41Copy full SHA for 4295a41
1 file changed
webapp/src/client/app/modules/web-client/vnc/web-client-vnc.component.ts
@@ -303,8 +303,8 @@ export class WebClientVncComponent extends WebClientBaseComponent implements OnI
303
}
304
305
try {
306
- const sessionContainerElement = this.sessionContainerElement.nativeElement;
307
- await sessionContainerElement.requestFullscreen();
+ const sessionsContainerElement = this.sessionsContainerElement.nativeElement;
+ await sessionsContainerElement.requestFullscreen();
308
} catch (err) {
309
this.isFullScreenMode = false;
310
console.error(`Error attempting to enable fullscreen mode: ${err.message} (${err.name})`);
0 commit comments