mirror of
https://gitlab.com/openlp/web-remote.git
synced 2024-12-22 11:32:47 +00:00
Merge branch 'fix-live-button' into 'master'
Fix the live button. See merge request openlp/web-remote!105
This commit is contained in:
commit
ece665dbf2
@ -154,7 +154,7 @@
|
|||||||
@else if (state.display) {
|
@else if (state.display) {
|
||||||
<mat-icon>desktop_windows</mat-icon>
|
<mat-icon>desktop_windows</mat-icon>
|
||||||
}
|
}
|
||||||
@else if (state.live) {
|
@else if (state.live()) {
|
||||||
<mat-icon>videocam</mat-icon>
|
<mat-icon>videocam</mat-icon>
|
||||||
}
|
}
|
||||||
</button>
|
</button>
|
||||||
@ -193,7 +193,7 @@
|
|||||||
(click)="showDisplay()"
|
(click)="showDisplay()"
|
||||||
class="displayButton"
|
class="displayButton"
|
||||||
[class.active]="state.display"
|
[class.active]="state.display"
|
||||||
[disabled]="state.live"
|
[disabled]="state.live()"
|
||||||
matTooltip="{{ 'SHOW_PRESENTATION' | translate }}"
|
matTooltip="{{ 'SHOW_PRESENTATION' | translate }}"
|
||||||
matTooltipPosition="above">
|
matTooltipPosition="above">
|
||||||
<mat-icon>videocam</mat-icon>
|
<mat-icon>videocam</mat-icon>
|
||||||
@ -242,7 +242,7 @@
|
|||||||
@else if (state.display) {
|
@else if (state.display) {
|
||||||
<mat-icon>desktop_windows</mat-icon>
|
<mat-icon>desktop_windows</mat-icon>
|
||||||
}
|
}
|
||||||
@else if (state.live) {
|
@else if (state.live()) {
|
||||||
<mat-icon>videocam</mat-icon>
|
<mat-icon>videocam</mat-icon>
|
||||||
}
|
}
|
||||||
</button>
|
</button>
|
||||||
@ -278,7 +278,7 @@
|
|||||||
mat-icon-button (click)="showDisplay()"
|
mat-icon-button (click)="showDisplay()"
|
||||||
class="displayButton"
|
class="displayButton"
|
||||||
[class.active]="state.display"
|
[class.active]="state.display"
|
||||||
[disabled]="state.live"
|
[disabled]="state.live()"
|
||||||
matTooltip="{{ 'SHOW_PRESENTATION' | translate }}"
|
matTooltip="{{ 'SHOW_PRESENTATION' | translate }}"
|
||||||
matTooltipPosition="above">
|
matTooltipPosition="above">
|
||||||
<mat-icon>videocam</mat-icon>
|
<mat-icon>videocam</mat-icon>
|
||||||
|
Loading…
Reference in New Issue
Block a user