Improve services list (display place name only)

This commit is contained in:
Matteo Gheza 2023-09-02 00:49:26 +02:00
parent 6ba2f6b5be
commit d7896762e0
1 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,8 @@
<td>{{ extractNamesFromObject(row.drivers).join(', ') }}</td>
<td>{{ extractNamesFromObject(row.crew).join(', ') }}</td>
<td>
{{ row.place.display_name }}<br>
<ng-container *ngIf="row.place.name"><i>{{ row.place.name }}</i></ng-container><br>
<ng-container *ngIf="row.place.village">{{ row.place.village }}</ng-container><br>
<a class="place_details_link cursor-pointer" (click)="openPlaceDetails(row.place.id)">{{ 'more details'|translate|titlecase }}</a>
</td>
<td>{{ row.notes }}</td>