This commit is contained in:
2026-03-07 01:19:31 +01:00
parent cc5892c30b
commit 9566b8c36a

View File

@@ -369,17 +369,15 @@
return; return;
} }
if (consoleNotice) { if (consoleNotice) {
consoleNotice.textContent = data.error || 'Bestehende Konsole nicht verfügbar Befehl wird in neuer Konsole ausgeführt.'; consoleNotice.textContent = data.error || 'Befehl konnte nicht in der bestehenden Konsole ausgeführt werden.';
consoleNotice.style.display = 'block'; consoleNotice.style.display = 'block';
} }
submitOpen();
}) })
.catch(() => { .catch(() => {
if (consoleNotice) { if (consoleNotice) {
consoleNotice.textContent = 'Bestehende Konsole nicht verfügbar Befehl wird in neuer Konsole ausgeführt.'; consoleNotice.textContent = 'Befehl konnte nicht in der bestehenden Konsole ausgeführt werden.';
consoleNotice.style.display = 'block'; consoleNotice.style.display = 'block';
} }
submitOpen();
}); });
}); });
} }