Skip to content

Commit

Permalink
Fixed #2803 in regards to the Request Button showing up.
Browse files Browse the repository at this point in the history
Still need to investiagte the availability side of things
  • Loading branch information
tidusjar committed Mar 25, 2019
1 parent 2b1eeba commit 775e18e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ <h5>
<i class="fa fa-check"></i> {{ 'Common.Available' | translate }}</button>
</div>
<div *ngIf="!result.fullyAvailable">
<div *ngIf="result.requested || result.approved; then requestedBtn else notRequestedBtn"></div>
<div *ngIf="result.requested || result.approved || result.monitored; then requestedBtn else notRequestedBtn"></div>
<ng-template #requestedBtn>
<button style="text-align: right" class="btn btn-primary-outline disabled" [disabled]>
<i class="fa fa-check"></i> {{ 'Common.Requested' | translate }}</button>
Expand Down

0 comments on commit 775e18e

Please sign in to comment.