From 91e51d4f6adfacab45c9a5bd9810fa6ab9bcce13 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Thu, 26 Mar 2026 21:22:59 +0100 Subject: [PATCH] feat: show configured taps count on Admin App Config overview New Taps column shows enabled/total count as a badge (e.g. "2/3") next to the existing Traced column. Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/pages/Admin/AppConfigPage.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ui/src/pages/Admin/AppConfigPage.tsx b/ui/src/pages/Admin/AppConfigPage.tsx index 080e32c4..7d6cd810 100644 --- a/ui/src/pages/Admin/AppConfigPage.tsx +++ b/ui/src/pages/Admin/AppConfigPage.tsx @@ -102,6 +102,17 @@ export default function AppConfigPage() { : 0; }, }, + { + key: 'taps', + header: 'Taps', + width: '70px', + render: (_val, row) => { + const total = row.taps?.length ?? 0; + const enabled = row.taps?.filter(t => t.enabled).length ?? 0; + if (total === 0) return 0; + return ; + }, + }, { key: 'version', header: 'v',