mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
Fix subscribe button displayed only if 4K is enabled
This commit is contained in:
parent
25342ec3c2
commit
614f9b3b21
1 changed files with 9 additions and 8 deletions
|
@ -104,18 +104,19 @@
|
||||||
{{'Common.Request4K' | translate }}
|
{{'Common.Request4K' | translate }}
|
||||||
</button>
|
</button>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
<span *ngIf="!isAdmin && movie.showSubscribe">
|
|
||||||
<button *ngIf="!movie.subscribed" (click)="notify()" id="notifyBtn"
|
|
||||||
mat-raised-button class="btn-spacing"> <i class="fas fa-bell"></i>
|
|
||||||
{{ 'Requests.Notify' | translate }}</button>
|
|
||||||
<button *ngIf="movie.subscribed" (click)="unNotify()" id="unnotifyBtn"
|
|
||||||
mat-raised-button class="btn-spacing"> <i class="fas fa-bell-slash"></i>
|
|
||||||
{{ 'Requests.RemoveNotification' | translate }}</button>
|
|
||||||
</span>
|
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
<span *ngIf="!isAdmin && movie.showSubscribe">
|
||||||
|
<button *ngIf="!movie.subscribed" (click)="notify()" id="notifyBtn"
|
||||||
|
mat-raised-button class="btn-spacing"> <i class="fas fa-bell"></i>
|
||||||
|
{{ 'Requests.Notify' | translate }}</button>
|
||||||
|
<button *ngIf="movie.subscribed" (click)="unNotify()" id="unnotifyBtn"
|
||||||
|
mat-raised-button class="btn-spacing"> <i class="fas fa-bell-slash"></i>
|
||||||
|
{{ 'Requests.RemoveNotification' | translate }}</button>
|
||||||
|
</span>
|
||||||
|
|
||||||
<span *ngIf="isAdmin && hasRequest">
|
<span *ngIf="isAdmin && hasRequest">
|
||||||
<button id="approveBtn" *ngIf="!movie.approved && movie.requested" (click)="approve(false)"
|
<button id="approveBtn" *ngIf="!movie.approved && movie.requested" (click)="approve(false)"
|
||||||
mat-raised-button class="btn-spacing" color="accent">
|
mat-raised-button class="btn-spacing" color="accent">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue