diff --git a/assets/components/Terminal.vue b/assets/components/Terminal.vue index 0299c608..adf8c565 100644 --- a/assets/components/Terminal.vue +++ b/assets/components/Terminal.vue @@ -36,7 +36,7 @@ onMounted(() => { terminal.resize(100, 40); ws = new WebSocket(withBase(`/api/hosts/${container.host}/containers/${container.id}/${action}`)); ws.onopen = () => { - terminal.writeln(`Attached to ${container.name} 🚀`); + terminal.writeln(`Attaching to ${container.name} 🚀`); if (action === "attach") { ws?.send("\r"); }