mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-12-17 21:08:25 +08:00
fix: Fix display issues caused by default table height (#11143)
This commit is contained in:
parent
f63658db9e
commit
af15659d99
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ const mobile = computed(() => {
|
||||||
return globalStore.isMobile();
|
return globalStore.isMobile();
|
||||||
});
|
});
|
||||||
const tableRef = ref();
|
const tableRef = ref();
|
||||||
const tableHeight = ref(0);
|
const tableHeight = ref<number | string>('');
|
||||||
const menuRef = ref<HTMLElement | null>(null);
|
const menuRef = ref<HTMLElement | null>(null);
|
||||||
const leftSelect = ref(false);
|
const leftSelect = ref(false);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue