ConceptCreator/src/app/editor/model-component-editor/model-component-editor.component.html
Sebastian Böckelmann 7680cd7edd
All checks were successful
E2E Testing / test (push) Successful in 1m21s
Edit abstract ModelComponent Information
2024-01-27 12:17:43 +01:00

10 lines
478 B
HTML

<mat-form-field appearance="fill" class="long-form">
<mat-label>Name</mat-label>
<input matInput [formControl]="nameCtrl" (change)="onUpdateName()">
<mat-error *ngIf="nameCtrl.hasError('required')">Please enter a valid number!</mat-error>
</mat-form-field>
<mat-form-field appearance="fill" class="long-form">
<mat-label>Description</mat-label>
<textarea matInput [formControl]="descriptionCtrl" (change)="onUpdateDescription()" rows="3"></textarea>
</mat-form-field>