From 86ff35977e74fa5a3833fb4cb554336bda37748b Mon Sep 17 00:00:00 2001 From: Claude Dev Date: Thu, 9 Apr 2026 20:23:42 +0200 Subject: [PATCH] Fortschritt: Popup wird immer zu Beginn angezeigt Auto-Minimize entfernt. Popup erscheint sowohl bei erstem Durchlauf als auch bei Aktualisierung sofort. Kann dann manuell minimiert werden. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/static/js/components.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/static/js/components.js b/src/static/js/components.js index b5347ec..de20bd7 100644 --- a/src/static/js/components.js +++ b/src/static/js/components.js @@ -285,8 +285,8 @@ const UI = { // Update sidebar status text this._updateSidebarRefreshStatus(incidentId, status, extra); - // For updates (not first refresh): default to minimized to avoid overlaying buttons - if (!state.isFirst && !state._userOpenedPopup) { + + if (false) { // popup always shown initially state.minimized = true; }