We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b2ac47 commit 7f7329bCopy full SHA for 7f7329b
1 file changed
frontend/app/view/processviewer/processviewer.tsx
@@ -194,6 +194,10 @@ export class ProcessViewerViewModel implements ViewModel {
194
195
async doKeepAlive() {
196
if (this.disposed) return;
197
+ const connStatus = globalStore.get(this.connStatus);
198
+ if (!connStatus?.connected) {
199
+ return;
200
+ }
201
const conn = globalStore.get(this.connection);
202
const route = makeConnRoute(conn);
203
try {
0 commit comments