From 6c01527b5e7993e3ae47f7fd4e5dcb08a82a65b6 Mon Sep 17 00:00:00 2001 From: andersonid Date: Fri, 26 Sep 2025 09:16:24 -0300 Subject: [PATCH] Fix: modal initialization to prevent empty modal on page load --- app/static/index.html | 12 ++++++++---- k8s/route.yaml | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/app/static/index.html b/app/static/index.html index 55f6eb0..fd62c21 100644 --- a/app/static/index.html +++ b/app/static/index.html @@ -506,11 +506,15 @@ height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1000; - display: flex; + display: none; align-items: center; justify-content: center; } + .modal.show { + display: flex; + } + .modal-content { background: white; border-radius: 8px; @@ -774,7 +778,7 @@ -