From a8e616bef777bdf1d5cdc482adfe4af75c79a8b6 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Mon, 2 Feb 2026 10:18:15 +0800 Subject: [PATCH] fix(Basic Application): The history window embedded in the floating window can still display its frame even after it is hidden. --- frontend/src/views/chat/chat-block/ChartBlock.vue | 5 +++-- frontend/src/views/embedded/index.vue | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/views/chat/chat-block/ChartBlock.vue b/frontend/src/views/chat/chat-block/ChartBlock.vue index e4e9ae93..57981a46 100644 --- a/frontend/src/views/chat/chat-block/ChartBlock.vue +++ b/frontend/src/views/chat/chat-block/ChartBlock.vue @@ -561,6 +561,7 @@ watch( .chart-fullscreen-dialog-body { padding: 0; + height: 100%; } .chart-sql-drawer-body { @@ -647,6 +648,7 @@ watch( border: unset; border-radius: unset; padding: 0; + height: 100%; .header-bar { border-bottom: 1px solid rgba(31, 35, 41, 0.15); @@ -657,8 +659,7 @@ watch( .chart-block { margin: unset; padding: 16px; - - height: calc(100vh - 56px); + height: calc(100% - 56px); } } diff --git a/frontend/src/views/embedded/index.vue b/frontend/src/views/embedded/index.vue index 0d2d2e01..4a699406 100644 --- a/frontend/src/views/embedded/index.vue +++ b/frontend/src/views/embedded/index.vue @@ -1,7 +1,6 @@