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 b397363 commit 081d5b7Copy full SHA for 081d5b7
frontend/src/views/host/process/network/index.vue
@@ -206,6 +206,9 @@ const onOpenProcess = () => {
206
const onMessage = (message: any) => {
207
oldData.value = JSON.parse(message.data);
208
data.value = filterByStatus();
209
+ if (data.value == null) {
210
+ data.value = [];
211
+ }
212
loading.value = false;
213
};
214
const onerror = () => {};
0 commit comments