Paginated admin library & upgrade manifests (#351)

* feat: new page layout + endpoint

* feat: non-parallel mass import

* feat: paginated admin library

* feat: lint and performance improvement

* feat: library filter util

* feat: link frontend features to backend

* fix: lint

* fix: small fixes

* feat: bump torrential

* fix: lint
This commit is contained in:
DecDuck
2026-02-25 02:17:33 +11:00
committed by GitHub
parent 3375e8c972
commit 7dc889852d
35 changed files with 1823 additions and 416 deletions
+2 -6
View File
@@ -14,7 +14,7 @@ const labelNumberMap = {
export function parseTaskLog(
logStr?: string | undefined,
): typeof TaskLog.infer {
if (!logStr) return { message: "", timestamp: "", level: "" };
if (!logStr) return { msg: "", time: "", level: "" };
const log = JSON.parse(logStr);
if (typeof log.level === "number") {
@@ -23,9 +23,5 @@ export function parseTaskLog(
] as string;
}
return {
message: log.msg,
timestamp: log.time,
level: log.level,
};
return log;
}