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',