diff --git a/frontend/src/views/host/process/network/index.vue b/frontend/src/views/host/process/network/index.vue index 4133ccbf8..3823e9784 100644 --- a/frontend/src/views/host/process/network/index.vue +++ b/frontend/src/views/host/process/network/index.vue @@ -206,6 +206,9 @@ const onOpenProcess = () => { const onMessage = (message: any) => { oldData.value = JSON.parse(message.data); data.value = filterByStatus(); + if (data.value == null) { + data.value = []; + } loading.value = false; }; const onerror = () => {};