mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-11-09 19:20:56 +08:00
fix: Fix docker status flicker issue (#9218)
This commit is contained in:
parent
17c685bc4c
commit
2f6aa0f45b
1 changed files with 2 additions and 2 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue