User table polish and audit log updates

This commit is contained in:
Jamie Curnow
2025-09-24 21:11:00 +10:00
parent fc8a5e8b97
commit a3d17249d0
14 changed files with 163 additions and 38 deletions

View File

@@ -1,4 +1,4 @@
import { IconUser } from "@tabler/icons-react";
import { IconBoltOff, IconUser } from "@tabler/icons-react";
import type { AuditLog } from "src/api/backend";
import { DateTimeFormat, intl } from "src/locale";
@@ -35,6 +35,9 @@ const getIcon = (row: AuditLog) => {
case "user":
ico = <IconUser size={16} className={c} />;
break;
case "dead-host":
ico = <IconBoltOff size={16} className={c} />;
break;
}
return ico;