From 8e6dc0df9b34cecb1086718e2de366bdedb0473b Mon Sep 17 00:00:00 2001 From: andersonid Date: Thu, 2 Oct 2025 15:31:53 -0300 Subject: [PATCH] fix: correct total issues count in modal - Fix modal to show correct total issues count from validations array - Use namespace.validations.length instead of namespace.total_validations - Ensure consistency between table and modal data display --- app/static/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/index.html b/app/static/index.html index e796b77..fef19bc 100644 --- a/app/static/index.html +++ b/app/static/index.html @@ -1405,7 +1405,7 @@ Pods: ${Object.keys(namespace.pods || {}).length}
- Total Issues: ${namespace.total_validations || 0} + Total Issues: ${namespace.validations?.length || 0}
Errors: ${namespace.severity_breakdown?.error || 0}