mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-12-11 04:46:12 +08:00
fix: Fixed network search returning empty results with no page update (#11251)
This commit is contained in:
parent
b397363c9d
commit
8bec6f2b28
1 changed files with 3 additions and 0 deletions
|
|
@ -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 = () => {};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue