From 2f6aa0f45bda9e2e29f4258af511691a30e6ef8d Mon Sep 17 00:00:00 2001 From: igophper <34326532+igophper@users.noreply.github.com> Date: Mon, 23 Jun 2025 13:46:03 +0800 Subject: [PATCH] fix: Fix docker status flicker issue (#9218) --- frontend/src/views/container/docker-status/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/container/docker-status/index.vue b/frontend/src/views/container/docker-status/index.vue index 814cf021c..f0d0b261b 100644 --- a/frontend/src/views/container/docker-status/index.vue +++ b/frontend/src/views/container/docker-status/index.vue @@ -20,8 +20,8 @@ const prop = defineProps({ }); const em = defineEmits(['search', 'mounted', 'update:is-active', 'update:is-exist', 'update:loading']); -const isActive = ref(); -const isExist = ref(); +const isActive = ref(true); +const isExist = ref(true); const loadStatus = async () => { em('update:loading', true); await loadDockerStatus()