From 0686749aa85fc22ce69c6892fef3361c72c0507a Mon Sep 17 00:00:00 2001 From: andersonid Date: Wed, 1 Oct 2025 16:17:09 -0300 Subject: [PATCH] Fix validation field name in namespace analysis - Change validation.validation_type to validation.rule_name - API returns rule_name field, not validation_type - Fix undefined display in namespace analysis modal - Ensure proper validation type display in detailed view --- 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 cdefcb1..1e6dfb2 100644 --- a/app/static/index.html +++ b/app/static/index.html @@ -1264,7 +1264,7 @@ const severityClass = `severity-${validation.severity}`; content += `
-

${validation.validation_type}: ${validation.message}

+

${validation.rule_name}: ${validation.message}

Recommendation: ${validation.recommendation}

`;