Sidebar: Queue-Position bleibt bei Lagenwechsel erhalten
Position aus _progressState lesen als Fallback wenn extra.queue_position nicht verfuegbar ist (z.B. bei Lagenwechsel-Restore). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Dieser Commit ist enthalten in:
@@ -630,7 +630,7 @@ const UI = {
|
||||
}
|
||||
|
||||
if (isQueued) {
|
||||
const pos = (extra && extra.queue_position) ? extra.queue_position : '';
|
||||
const pos = (extra && extra.queue_position) ? extra.queue_position : ((this._progressState[incidentId] || {})._queuePos || '');
|
||||
// Store queue position in state for renderIncidentItem
|
||||
const pState = this._progressState[incidentId];
|
||||
if (pState && pos) pState._queuePos = pos;
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren