fixed linting !wip

pull/2473/head
TidusJar 6 years ago
parent 8fd3c57cb7
commit 18b48cd0a8

@ -45,11 +45,11 @@
<ng-template [ngIf]="result.monitored && !result.fullyAvailable"> <ng-template [ngIf]="result.monitored && !result.fullyAvailable">
<span class="label label-info" id="processingRequestLabel" [translate]="'Common.Monitored'"></span> <span class="label label-info" id="processingRequestLabel" [translate]="'Common.Monitored'"></span>
</ng-template> </ng-template>
<ng-template [ngIf]="result.requested && !result.approved && !result.available"> <ng-template [ngIf]="result.requested && !result.approved && !result.partiallyAvailable">
<span class="label label-warning" id="pendingApprovalLabel" [translate]="'Common.PendingApproval'"></span> <span class="label label-warning" id="pendingApprovalLabel" [translate]="'Common.PendingApproval'"></span>
</ng-template> </ng-template>
<ng-template [ngIf]="result.approved && !result.available"><span class="label label-info" id="processingRequestLabel" [translate]="'Common.ProcessingRequest'"></span></ng-template> <ng-template [ngIf]="result.approved && !result.fullyAvailable"><span class="label label-info" id="processingRequestLabel" [translate]="'Common.ProcessingRequest'"></span></ng-template>
@ -79,7 +79,7 @@
<button style="text-align: right" class="btn btn-success-outline disabled" disabled> <button style="text-align: right" class="btn btn-success-outline disabled" disabled>
<i class="fa fa-check"></i> {{ 'Common.Available' | translate }}</button> <i class="fa fa-check"></i> {{ 'Common.Available' | translate }}</button>
</div> </div>
<div *ngIf="!result.available"> <div *ngIf="!result.fullyAvailable">
<div *ngIf="result.requested || result.approved; then requestedBtn else notRequestedBtn"></div> <div *ngIf="result.requested || result.approved; then requestedBtn else notRequestedBtn"></div>
<ng-template #requestedBtn> <ng-template #requestedBtn>
<button style="text-align: right" class="btn btn-primary-outline disabled" [disabled]> <button style="text-align: right" class="btn btn-primary-outline disabled" [disabled]>

Loading…
Cancel
Save