fix: 增加终端连接断开提示信息 (#1571)

This commit is contained in:
ssongliu
2023-07-07 03:08:11 +00:00
committed by GitHub
parent 10427ddd65
commit afcebb46a0
@@ -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);
};