From 37aec4fee10b046222017215c188344142952582 Mon Sep 17 00:00:00 2001 From: alvis Date: Mon, 4 May 2026 10:20:44 +0000 Subject: [PATCH] chore: ADR-0007/0012 superseded status + admin users ID column ADR-0007 and ADR-0012 both superseded by ADR-0013 as of 2026-05-01. UsersTable gains a truncated ID column for quick user identification. Co-Authored-By: Claude Sonnet 4.6 --- apps/admin/src/components/UsersTable.tsx | 9 ++++++--- docs/adr/0007-egreedy-v1-active-policy.md | 2 +- docs/adr/0012-egreedy-v2-profile-features.md | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/apps/admin/src/components/UsersTable.tsx b/apps/admin/src/components/UsersTable.tsx index 79d7e5b..d35abd5 100644 --- a/apps/admin/src/components/UsersTable.tsx +++ b/apps/admin/src/components/UsersTable.tsx @@ -37,7 +37,7 @@ export function UsersTable() { - {['Email', 'Name', 'Role', 'Consent', 'Joined', 'Status'].map((h) => ( + {['ID', 'Email', 'Name', 'Role', 'Consent', 'Joined', 'Status'].map((h) => ( - ) : users.length === 0 ? ( - @@ -66,6 +66,9 @@ export function UsersTable() { key={u.id} className="hover:bg-gray-900 transition-colors cursor-pointer" > +
{loading ? (
+ Loading…
+ No users yet.
+ {u.id.slice(0, 8)} + {u.email} diff --git a/docs/adr/0007-egreedy-v1-active-policy.md b/docs/adr/0007-egreedy-v1-active-policy.md index fbe506b..c7f09af 100644 --- a/docs/adr/0007-egreedy-v1-active-policy.md +++ b/docs/adr/0007-egreedy-v1-active-policy.md @@ -1,7 +1,7 @@ # ADR-0007: ε-greedy v1 as the active recommendation policy ## Status -Accepted — 2026-04-16 +Superseded by ADR-0013 — 2026-05-01 ## Context diff --git a/docs/adr/0012-egreedy-v2-profile-features.md b/docs/adr/0012-egreedy-v2-profile-features.md index cf69e49..d8cd7fb 100644 --- a/docs/adr/0012-egreedy-v2-profile-features.md +++ b/docs/adr/0012-egreedy-v2-profile-features.md @@ -1,6 +1,6 @@ # ADR-0012 — ε-greedy v2: profile features in the bandit (D=7→12) -**Status:** Promoted +**Status:** Superseded by ADR-0013 — 2026-05-01 **Date:** 2026-04-25 (accepted) / 2026-04-26 (promoted) **Issue:** #99