From b62f21bae067a11a3002d0d96c7b05b0425061bd Mon Sep 17 00:00:00 2001 From: Chris Witterholt Date: Thu, 25 Apr 2024 20:28:53 +0200 Subject: [PATCH] Fix the live button. --- src/app/app.component.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/app.component.html b/src/app/app.component.html index 103c6ec..8ecd9c9 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -154,7 +154,7 @@ @else if (state.display) { desktop_windows } - @else if (state.live) { + @else if (state.live()) { videocam } @@ -193,7 +193,7 @@ (click)="showDisplay()" class="displayButton" [class.active]="state.display" - [disabled]="state.live" + [disabled]="state.live()" matTooltip="{{ 'SHOW_PRESENTATION' | translate }}" matTooltipPosition="above"> videocam @@ -242,7 +242,7 @@ @else if (state.display) { desktop_windows } - @else if (state.live) { + @else if (state.live()) { videocam } @@ -278,7 +278,7 @@ mat-icon-button (click)="showDisplay()" class="displayButton" [class.active]="state.display" - [disabled]="state.live" + [disabled]="state.live()" matTooltip="{{ 'SHOW_PRESENTATION' | translate }}" matTooltipPosition="above"> videocam