mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-11-13 21:22:00 +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 em = defineEmits(['search', 'mounted', 'update:is-active', 'update:is-exist', 'update:loading']);
|
||||||
const isActive = ref();
|
const isActive = ref(true);
|
||||||
const isExist = ref();
|
const isExist = ref(true);
|
||||||
const loadStatus = async () => {
|
const loadStatus = async () => {
|
||||||
em('update:loading', true);
|
em('update:loading', true);
|
||||||
await loadDockerStatus()
|
await loadDockerStatus()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue