mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
Fixed a small issue where the request button was appearing when it shouldn't be
This commit is contained in:
parent
7dd0812c95
commit
33dbf2a0e6
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@
|
|||
</button>
|
||||
</ng-template>
|
||||
<ng-template #notRequestedBtn>
|
||||
<button id="requestBtn" mat-raised-button class="btn-spacing" color="primary" (click)="request()">
|
||||
<button *ngIf="!movie.requested" id="requestBtn" mat-raised-button class="btn-spacing" color="primary" (click)="request()">
|
||||
<i *ngIf="movie.requestProcessing" class="fas fa-circle-notch fa-spin fa-fw"></i>
|
||||
<i *ngIf="!movie.requestProcessing && !movie.processed" class="fas fa-plus"></i>
|
||||
<i *ngIf="movie.processed && !movie.requestProcessing" class="fas fa-check"></i>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue