mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Fixed a bug where it would show a tv episode as processing request
This commit is contained in:
parent
685b97ce8d
commit
1fcd8631a8
1 changed files with 3 additions and 4 deletions
|
@ -49,12 +49,11 @@
|
|||
{{ep.airDateDisplay }}
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<ng-template [ngIf]="ep.available"><span class="label label-success" id="availableLabel">Available</span></ng-template>
|
||||
<ng-template [ngIf]="ep.approved && !ep.available "><span class="label label-info" id="processingRequestLabel">Processing
|
||||
Request</span></ng-template>
|
||||
<ng-template [ngIf]="ep.available"><span class="label label-success" id="availableLabel">{{'Common.Available' | translate}}</span></ng-template>
|
||||
<ng-template [ngIf]="ep.requested && ep.approved && !ep.available "><span class="label label-info" id="processingRequestLabel">{{'Common.ProcessingRequest' | translate}}</span></ng-template>
|
||||
<ng-template [ngIf]="ep.selected"><span class="label label-info" id="selectedLabel">Selected</span></ng-template>
|
||||
<ng-template [ngIf]="ep.requested && !ep.approved && !ep.available && !ep.selected"><span class="label label-warning"
|
||||
id="pendingApprovalLabel">Pending Approval</span>
|
||||
id="pendingApprovalLabel">{{'Common.PendingApproval' | translate}}</span>
|
||||
</ng-template>
|
||||
<ng-template [ngIf]="!ep.requested && !ep.available && !ep.approved && !ep.selected"><span class="label label-danger"
|
||||
id="notRequetsedLabel">Not Requested</span></ng-template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue