id's toegevoegd pt 2 + fix mattermost pipeline
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
size="m"
|
||||
tuiButton
|
||||
appearance="secondary"
|
||||
id="klantToevoegen"
|
||||
type="button"
|
||||
(click)="toggleCustomerModal()"
|
||||
>
|
||||
@@ -26,7 +27,7 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let customer of customers" (click)="selectCustomer(customer)">
|
||||
<tr *ngFor="let customer of customers" (click)="selectCustomer(customer)" [id]="customer.id">
|
||||
<td>{{ customer.firstName }} {{ customer.lastName }}</td>
|
||||
<td>{{ customer.email }}</td>
|
||||
</tr>
|
||||
@@ -47,6 +48,7 @@
|
||||
<input
|
||||
tuiTextfieldLegacy
|
||||
type="text"
|
||||
id="input-voornaam"
|
||||
formControlName="firstName"
|
||||
/>
|
||||
</tui-input>
|
||||
@@ -61,6 +63,7 @@
|
||||
<input
|
||||
tuiTextfieldLegacy
|
||||
type="text"
|
||||
id="input-achternaam"
|
||||
formControlName="lastName"
|
||||
/>
|
||||
</tui-input>
|
||||
@@ -74,6 +77,7 @@
|
||||
<input
|
||||
tuiTextfieldLegacy
|
||||
autocomplete="email"
|
||||
id="input-email"
|
||||
type="email"
|
||||
formControlName="email"
|
||||
/>
|
||||
@@ -83,6 +87,7 @@
|
||||
appearance="secondary"
|
||||
size="m"
|
||||
tuiButton
|
||||
id="opslaanKlant"
|
||||
(click)="saveCustomer()"
|
||||
[disabled]="customerForm.invalid"
|
||||
type="button">
|
||||
|
||||
Reference in New Issue
Block a user