Filter call source #122

Merged
amigan merged 3 commits from filterSource into trunk 2025-02-22 19:28:33 -05:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 2e580d8b4c - Show all commits

View file

@ -86,7 +86,7 @@ form {
} }
.filterBox { .filterBox {
flex: 1 1 200px; flex: 1 2 150px;
} }
.durationFilter { .durationFilter {

View file

@ -102,12 +102,12 @@
{{ call | talkgroup: "alpha" | async }} {{ call | talkgroup: "alpha" | async }}
</td> </td>
</ng-container> </ng-container>
<ng-container matColumnDef="talker"> <ng-container matColumnDef="talker">
<th mat-header-cell *matHeaderCellDef>Source</th> <th mat-header-cell *matHeaderCellDef>Source</th>
<td mat-cell *matCellDef="let call"> <td mat-cell *matCellDef="let call">
@let tlkAlias = call | talker; @let tlkAlias = call | talker;
@if (tlkAlias) { @if (tlkAlias) {
{{ tlkAlias }} {{ tlkAlias }}
} @else { } @else {
&mdash; &mdash;
} }