Skip to content

Commit 8bec6f2

Browse files
fix: Fixed network search returning empty results with no page update (#11251)
1 parent b397363 commit 8bec6f2

File tree

1 file changed

+3
-0
lines changed
  • frontend/src/views/host/process/network

1 file changed

+3
-0
lines changed

frontend/src/views/host/process/network/index.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,9 @@ const onOpenProcess = () => {
206206
const onMessage = (message: any) => {
207207
oldData.value = JSON.parse(message.data);
208208
data.value = filterByStatus();
209+
if (data.value == null) {
210+
data.value = [];
211+
}
209212
loading.value = false;
210213
};
211214
const onerror = () => {};

0 commit comments

Comments
 (0)