mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-23 00:38:28 +00:00
Fix missing field in global.ts (#1377)
This commit is contained in:
parent
42cbbcdc2a
commit
2bd7579cd5
1 changed files with 2 additions and 0 deletions
|
|
@ -555,6 +555,7 @@ function getConnStatusAtom(conn: string): PrimitiveAtom<ConnStatus> {
|
|||
status: "connected",
|
||||
hasconnected: true,
|
||||
activeconnnum: 0,
|
||||
wshenabled: false,
|
||||
};
|
||||
rtn = atom(connStatus);
|
||||
} else {
|
||||
|
|
@ -565,6 +566,7 @@ function getConnStatusAtom(conn: string): PrimitiveAtom<ConnStatus> {
|
|||
status: "disconnected",
|
||||
hasconnected: false,
|
||||
activeconnnum: 0,
|
||||
wshenabled: false,
|
||||
};
|
||||
rtn = atom(connStatus);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue