1 Commits

Author SHA1 Message Date
Sebastian Seedorf
b3aec5e6b2 fix: skip sort in real mode, API already returns ORDER BY real_time ASC 2026-06-05 13:10:04 +02:00
2 changed files with 6 additions and 8 deletions

View File

@@ -42,7 +42,7 @@ export default function TableViz({ config, rows, onEdit, onDelete }: Props) {
<th className="text-right px-2 py-1 text-green-400">Green</th>
)}
{config.signal_type !== 'green' && (
<th className="text-right px-2 py-1 text-red-400">Red</th>
<th className="text-right px-2 py-1 text-red-400">Red (NP)</th>
)}
</tr>
</thead>

View File

@@ -24,15 +24,13 @@ export default function UpsChart({ config, upsRows, timeMode, onEdit, onDelete }
(el, w, h, lRef) => {
if (upsRows.length < 2) return null;
const sorted = [...upsRows].sort((a, b) =>
timeMode === 'tick'
? a.game_tick - b.game_tick
: new Date(a.real_time).getTime() - new Date(b.real_time).getTime(),
);
const xs = sorted.map((r) =>
const data = timeMode === 'tick'
? [...upsRows].sort((a, b) => a.game_tick - b.game_tick)
: upsRows;
const xs = data.map((r) =>
timeMode === 'tick' ? r.game_tick : new Date(r.real_time).getTime() / 1000,
);
const ys = sorted.map((r) => r.ups);
const ys = data.map((r) => r.ups);
const xAxis: uPlot.Axis = {
...AXIS_BASE,