PlotEditor series track FIX

This commit is contained in:
Patrick Haßel 2025-10-27 12:36:28 +01:00
parent c781c88147
commit ab7f3de9a2

View File

@ -158,7 +158,7 @@
</td> </td>
<td> <td>
<select [ngModel]="graph.series.id" (ngModelChange)="plotService.graphSeries(graph, $event)"> <select [ngModel]="graph.series.id" (ngModelChange)="plotService.graphSeries(graph, $event)">
@for (s of seriesService.list; track s.id) { @for (s of seriesService.list; track s.name) {
<option [ngValue]="s.id">{{ s.name }} [{{ s.valueString }}]</option> <option [ngValue]="s.id">{{ s.name }} [{{ s.valueString }}]</option>
} }
</select> </select>