This commit is contained in:
2026-03-06 22:08:51 +01:00
parent fb9929efb8
commit 405a29bd54
2 changed files with 21 additions and 13 deletions

View File

@@ -422,12 +422,15 @@
}
const iframe = getActiveIframe();
const ok = trySendToIframe(iframe, commandTextarea.value.trim());
if (!ok && consoleError) {
consoleError.textContent = 'Konnte den Befehl nicht an die aktive Konsole senden.';
consoleError.style.display = 'block';
} else if (consoleError) {
consoleError.style.display = 'none';
if (!ok) {
if (consoleNotice) {
consoleNotice.textContent = 'Aktive Konsole nicht steuerbar Befehl wird in neuer Konsole ausgeführt.';
consoleNotice.style.display = 'block';
}
submitOpen();
return;
}
if (consoleError) consoleError.style.display = 'none';
});
}
}