refactor: remove unused employee fields from template
All checks were successful
Playwright Tests / test (pull_request) Successful in 2m45s
All checks were successful
Playwright Tests / test (pull_request) Successful in 2m45s
This commit is contained in:
parent
2a337f3586
commit
4dc253b508
1 changed files with 0 additions and 8 deletions
|
@ -28,10 +28,6 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th><span class="sortable">First Name</span></th>
|
<th><span class="sortable">First Name</span></th>
|
||||||
<th><span class="sortable">Last Name</span></th>
|
<th><span class="sortable">Last Name</span></th>
|
||||||
<th>Street</th>
|
|
||||||
<th>Postcode</th>
|
|
||||||
<th>City</th>
|
|
||||||
<th>Phone</th>
|
|
||||||
<th>Actions</th>
|
<th>Actions</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -41,10 +37,6 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ employee.firstName }}</td>
|
<td>{{ employee.firstName }}</td>
|
||||||
<td>{{ employee.lastName }}</td>
|
<td>{{ employee.lastName }}</td>
|
||||||
<td>{{ employee.street }}</td>
|
|
||||||
<td>{{ employee.postcode }}</td>
|
|
||||||
<td>{{ employee.city }}</td>
|
|
||||||
<td>{{ employee.phone }}</td>
|
|
||||||
<td>
|
<td>
|
||||||
<button class="btn btn-primary me-2" (click)="editEmployee(employee.id)">Edit</button>
|
<button class="btn btn-primary me-2" (click)="editEmployee(employee.id)">Edit</button>
|
||||||
<button class="btn btn-danger" (click)="deleteEmployee(employee.id)">Delete</button>
|
<button class="btn btn-danger" (click)="deleteEmployee(employee.id)">Delete</button>
|
||||||
|
|
Loading…
Add table
Reference in a new issue