From bd2af094e6b2b0116963439e13bdd8afcf388450 Mon Sep 17 00:00:00 2001 From: andersonid Date: Tue, 30 Sep 2025 13:46:16 -0300 Subject: [PATCH] Fix: Remove alert from analyzeNamespace function and use proper modal --- app/static/index.html | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/app/static/index.html b/app/static/index.html index 04253d0..13cfb2f 100644 --- a/app/static/index.html +++ b/app/static/index.html @@ -1012,11 +1012,8 @@ const namespace = currentData.namespaces.find(ns => ns.namespace === namespaceName); if (!namespace) return; - // Create detailed view - const detailsHtml = createNamespaceDetails(namespace); - - // Show details in an alert for now (simpler approach) - showNamespaceDetailsSimple(namespaceName, detailsHtml); + // Show details in modal + showNamespaceDetailsSimple(namespaceName); } // Create detailed HTML for namespace issues @@ -1093,7 +1090,7 @@ } // Show namespace details in modal - function showNamespaceDetailsSimple(namespaceName, detailsHtml) { + function showNamespaceDetailsSimple(namespaceName) { // Create modal if it doesn't exist let modal = document.getElementById('namespaceModal'); if (!modal) {