Skip to content
Snippets Groups Projects
Commit 31a164d2 authored by kbeyro's avatar kbeyro
Browse files

update button disabled

parent aa512dda
Branches
Tags
3 merge requests!57Develop,!55Resolve "Merge 1.6.5 to develop",!53Resolve "Update bulk view details"
......@@ -2,6 +2,6 @@
width: 300px;
}
:host ::ng-deep .p-inputnumber {
:host ::ng-deep .p-inputtext {
width: 300px;
}
\ No newline at end of file
......@@ -13,10 +13,10 @@
<h4>{{'BULK.APP.PARALLEL' | translate}}</h4>
</div>
<div style="margin-top: 3rem;">
<p-inputnumber inputId="minmax" mode="decimal" ngDefaultControl [(ngModel)]="parallelDeploymentsLimit" [max]="limitFromConfiguration" [min]="1" />
<input pInputText type="number" inputId="minmax" mode="decimal" ngDefaultControl [(ngModel)]="parallelDeploymentsLimit" [max]="limitFromConfiguration" [min]="1" />
</div>
<div class="row .navbar-right" style="margin-top: 3rem; display: flex; justify-content: right">
<button class="btn btn-primary" [disabled]="selectApp == null || parallelDeploymentsLimit < 1" (click)="selectApp()"> {{'BULK.LIST.CONTINUE' | translate}}</button>
<button class="btn btn-primary" [disabled]="selectApp?.name === null || parallelDeploymentsLimit < 1 || parallelDeploymentsLimit > limitFromConfiguration" (click)="selectApp()"> {{'BULK.LIST.CONTINUE' | translate}}</button>
</div>
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment