Promote develop → main (2026-04-29 20:10 UTC) #3
@@ -628,7 +628,7 @@
|
||||
<script src="/static/js/ws.js?v=20260316b"></script>
|
||||
<script src="/static/js/components.js?v=20260316d"></script>
|
||||
<script src="/static/js/layout.js?v=20260316b"></script>
|
||||
<script src="/static/js/app.js?v=20260423a"></script>
|
||||
<script src="/static/js/app.js?v=20260427a"></script>
|
||||
<script src="/static/js/cluster-data.js?v=20260322f"></script>
|
||||
<script src="/static/js/tutorial.js?v=20260316z"></script>
|
||||
<script src="/static/js/chat.js?v=20260422a"></script>
|
||||
|
||||
@@ -736,7 +736,12 @@ const App = {
|
||||
const prevMini = document.getElementById('progress-mini');
|
||||
if (prevMini) prevMini.style.display = 'none';
|
||||
const grid = document.querySelector('.tab-panels');
|
||||
if (grid) grid.classList.remove('blurred');
|
||||
// Blur nur entfernen, wenn er nicht direkt danach wieder gesetzt wird.
|
||||
// Beim Create-Flow (frischer isFirst-State + selectIncident im selben
|
||||
// Tick) greift CSS filter:blur sonst nicht im selben Frame.
|
||||
const _restState = isRefreshing ? UI._progressState[id] : null;
|
||||
const _willReBlur = _restState && _restState.isFirst && !_restState.minimized;
|
||||
if (grid && !_willReBlur) grid.classList.remove('blurred');
|
||||
|
||||
if (isRefreshing) {
|
||||
const state = UI._progressState[id];
|
||||
@@ -1778,6 +1783,14 @@ const App = {
|
||||
|
||||
await this.selectIncident(incident.id);
|
||||
|
||||
// Im Create-Flow greift CSS filter:blur nach dem viel DOM-Reshuffle
|
||||
// (Modal-Close, renderSidebar, Tab-Wechsel) im selben Frame nicht
|
||||
// zuverlaessig. Im naechsten Frame nochmal setzen — Aufwand minimal.
|
||||
requestAnimationFrame(() => {
|
||||
const _grid = document.querySelector('.tab-panels');
|
||||
if (_grid) _grid.classList.add('blurred');
|
||||
});
|
||||
|
||||
this._updateRefreshButton(true);
|
||||
await API.refreshIncident(incident.id);
|
||||
UI.showToast(`Lage "${incident.title}" angelegt. Recherche gestartet.`, 'success');
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren