From 9d84a8eb5598653ffd72f4d95dc930e39b45eed0 Mon Sep 17 00:00:00 2001 From: Brent G Date: Sat, 22 Aug 2026 06:12:59 +0000 Subject: [PATCH 1/2] fix(console): match brokers Status colors to agents (destructive/outline) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Registration/broker token Status badges now use the same variants as the eval-agents token Status column: Revoked → destructive, Active → outline (was deep-red / blue backgrounds). 🤖 Built with SMT --- client/src/pages/admin-brokers.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/pages/admin-brokers.tsx b/client/src/pages/admin-brokers.tsx index 9f196e1..5f074c9 100644 --- a/client/src/pages/admin-brokers.tsx +++ b/client/src/pages/admin-brokers.tsx @@ -192,8 +192,8 @@ export default function AdminBrokers() { {token.name} {token.isRevoked - ? Revoked - : Active} + ? Revoked + : Active} {fmt(token.lastUsedAt)} {fmt(token.createdAt)} From c9f9551850995ca9d2c0237f9620adcea418f006 Mon Sep 17 00:00:00 2001 From: Brent G Date: Sat, 22 Aug 2026 06:14:37 +0000 Subject: [PATCH 2/2] fix(console): blue Active Status badge on agents + brokers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Standardize the token Status badges across the eval-agents and brokers pages: Active → blue background (bg-blue-500), Revoked → destructive. 🤖 Built with SMT --- client/src/pages/admin-brokers.tsx | 2 +- client/src/pages/console-eval-agents.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/pages/admin-brokers.tsx b/client/src/pages/admin-brokers.tsx index 5f074c9..a763ecb 100644 --- a/client/src/pages/admin-brokers.tsx +++ b/client/src/pages/admin-brokers.tsx @@ -193,7 +193,7 @@ export default function AdminBrokers() { {token.isRevoked ? Revoked - : Active} + : Active} {fmt(token.lastUsedAt)} {fmt(token.createdAt)} diff --git a/client/src/pages/console-eval-agents.tsx b/client/src/pages/console-eval-agents.tsx index 111f3da..82945c0 100644 --- a/client/src/pages/console-eval-agents.tsx +++ b/client/src/pages/console-eval-agents.tsx @@ -516,7 +516,7 @@ export default function ConsoleEvalAgents() { {token.isRevoked ? ( Revoked ) : ( - Active + Active )}