ConceptCreator/src/app/editor/script-account-editor/script-account-editor.component.html
Sebastian Böckelmann b488049c28
All checks were successful
E2E Testing / test (push) Successful in 1m29s
Allow negative min and max for ScriptAccounts
2024-03-19 10:39:47 +01:00

16 lines
699 B
HTML

<div *ngIf="scriptAccount != undefined">
<mat-form-field class="example-full-width">
<mat-label>MinValue</mat-label>
<input matInput [formControl]="minCtrl" type="number" (change)="onUpdateMinValue($event)">
<mat-error *ngIf="minCtrl.hasError('required')">Please enter a valid number!</mat-error>
</mat-form-field>
<mat-form-field class="example-full-width">
<mat-label>MaxValue</mat-label>
<input matInput type="number" [formControl]="maxCtrl" (change)="onUpdateMaxValue()">
<mat-error *ngIf="maxCtrl.hasError('required')">Please enter a valid number!</mat-error>
</mat-form-field>
<button mat-raised-button color="accent" (click)="save()">Save</button>
</div>