From afcebb46a0aed7d0a0b21a70e90f0bcf1e6ed44b Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Fri, 7 Jul 2023 11:08:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=20=E5=A2=9E=E5=8A=A0=E7=BB=88=E7=AB=AF?= =?UTF-8?q?=E8=BF=9E=E6=8E=A5=E6=96=AD=E5=BC=80=E6=8F=90=E7=A4=BA=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=20(#1571)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/terminal/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/terminal/index.vue b/frontend/src/components/terminal/index.vue index dd6c6e19f..6362da68a 100644 --- a/frontend/src/components/terminal/index.vue +++ b/frontend/src/components/terminal/index.vue @@ -184,6 +184,7 @@ const closeRealTerminal = (ev: CloseEvent) => { if (heartbeatTimer.value) { clearInterval(heartbeatTimer.value); } + term.value.write('The connection has been disconnected.'); term.value.write(ev.reason); };