From 8bec6f2b281715f16e78a956d28db2ce445103e2 Mon Sep 17 00:00:00 2001 From: CityFun <31820853+zhengkunwang223@users.noreply.github.com> Date: Mon, 8 Dec 2025 15:10:37 +0800 Subject: [PATCH] fix: Fixed network search returning empty results with no page update (#11251) --- frontend/src/views/host/process/network/index.vue | 3 +++ 1 file changed, 3 insertions(+) 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 = () => {};