Ajout du piège dans le formulaire

d'ajout de sauts
This commit is contained in:
Sébastien André
2019-11-23 16:54:09 +01:00
parent 3f7966091c
commit 47bdc0ac57
5 changed files with 21 additions and 18 deletions

View File

@@ -27,10 +27,11 @@
</mat-form-field>
<mat-form-field>
<mat-label>Choose the used Rig</mat-label>
<mat-select [(ngModel)]="selectedRig" name="selectedRig">
<mat-option value="8">Option 1</mat-option>
<mat-option value="9">Option 3</mat-option>
<mat-label>Choose the used gear</mat-label>
<mat-select [(ngModel)]="selectedGear" name="selectedGear">
<mat-option *ngFor="let gear of listOfGear" [value]="gear.id">
{{gear.name}}
</mat-option>
</mat-select>
</mat-form-field>