From 15aed668cff6cd29a004526302357fff6d71d617 Mon Sep 17 00:00:00 2001 From: Fine Date: Tue, 25 Oct 2022 15:21:30 +0800 Subject: [PATCH] fix height --- src/views/dashboard/configuration/Widget.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/dashboard/configuration/Widget.vue b/src/views/dashboard/configuration/Widget.vue index 4c684906..4582b702 100644 --- a/src/views/dashboard/configuration/Widget.vue +++ b/src/views/dashboard/configuration/Widget.vue @@ -101,7 +101,7 @@ export default defineComponent({ ...CustomOptions, }, setup() { - const configHeight = document.documentElement.clientHeight - 520; + const configHeight = document.documentElement.clientHeight - 540; const { t } = useI18n(); const dashboardStore = useDashboardStore(); const appStoreWithOut = useAppStoreWithOut();