From 57a6417812b1cd322a91d2898a7500c1eace2a30 Mon Sep 17 00:00:00 2001 From: Wankko Ree Date: Wed, 5 Apr 2023 23:32:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D`AttachAddon`=E4=BC=9A?= =?UTF-8?q?=E5=B0=86=E6=95=B0=E6=8D=AE=E4=BB=A5raw=E5=BD=A2=E5=BC=8F?= =?UTF-8?q?=E9=87=8D=E5=A4=8D=E5=8F=91=E9=80=81=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/host/terminal/terminal/terminal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/host/terminal/terminal/terminal.vue b/frontend/src/views/host/terminal/terminal/terminal.vue index 83fd900bb..394180401 100644 --- a/frontend/src/views/host/terminal/terminal/terminal.vue +++ b/frontend/src/views/host/terminal/terminal/terminal.vue @@ -135,7 +135,7 @@ const initTerm = () => { ); } }); - term.value.loadAddon(new AttachAddon(terminalSocket.value)); + term.value.loadAddon(new AttachAddon(terminalSocket.value, { bidirectional: false })); term.value.loadAddon(fitAddon); termReady.value = true; }