update to read from db

This commit is contained in:
2026-06-03 14:30:43 -04:00
parent 5511a717c6
commit 45e600612e
4 changed files with 176 additions and 59 deletions
+2 -2
View File
@@ -233,8 +233,8 @@ export default function TestTable({ tests = [], allTests = [], isLoading }) {
<tr key={r.station} className="text-slate-300">
<td className="pr-6 py-0.5 text-cyan-400 font-medium">STA{r.station}</td>
<td className="pr-6 py-0.5 text-right">{r.tput} Mbps</td>
<td className="pr-6 py-0.5 text-right">{r.dlRssi} dBm</td>
<td className="py-0.5 text-right">{r.ulRssi} dBm</td>
<td className="pr-6 py-0.5 text-right">{r.dlRssi ?? '-'} dBm</td>
<td className="py-0.5 text-right">{r.ulRssi ?? '-'} dBm</td>
</tr>
))}
</tbody>