feat: show WAF count in blocked stat card; clean up proxy hosts table

- Analytics: show "X from WAF" sub-stat under Blocked Requests card
- Proxy hosts: remove WAF column and redundant Status column (toggle already shows enabled state)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
fuomag9
2026-03-04 22:44:52 +01:00
parent c20ba54b4c
commit bd4220c74c
2 changed files with 2 additions and 30 deletions

View File

@@ -458,6 +458,7 @@ export default function AnalyticsClient() {
<StatCard
label="Blocked Requests"
value={summary.blockedRequests.toLocaleString()}
sub={(wafStats?.total ?? 0) > 0 ? `${wafStats!.total.toLocaleString()} from WAF` : undefined}
color={summary.blockedRequests > 0 ? '#ef4444' : undefined}
/>
</Grid>