add backend for history

This commit is contained in:
2024-12-30 20:13:03 -05:00
parent c7ca250b66
commit aa1763cbe7
11 changed files with 319 additions and 28 deletions

View File

@@ -16,7 +16,7 @@ export function useTelemetry(name: MaybeRefOrGetter<string>) {
const name_value = toValue(name);
try {
const res = await fetch(`/api/tlm/${name_value}`);
const res = await fetch(`/api/tlm/info/${name_value}`);
data.value = await res.json();
error.value = null;
} catch (e) {