Skip to content

Commit a8e616b

Browse files
committed
fix(Basic Application): The history window embedded in the floating window can still display its frame even after it is hidden.
1 parent e850868 commit a8e616b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/src/views/chat/chat-block/ChartBlock.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,7 @@ watch(
561561
562562
.chart-fullscreen-dialog-body {
563563
padding: 0;
564+
height: 100%;
564565
}
565566
566567
.chart-sql-drawer-body {
@@ -647,6 +648,7 @@ watch(
647648
border: unset;
648649
border-radius: unset;
649650
padding: 0;
651+
height: 100%;
650652
651653
.header-bar {
652654
border-bottom: 1px solid rgba(31, 35, 41, 0.15);
@@ -657,8 +659,7 @@ watch(
657659
.chart-block {
658660
margin: unset;
659661
padding: 16px;
660-
661-
height: calc(100vh - 56px);
662+
height: calc(100% - 56px);
662663
}
663664
}
664665

frontend/src/views/embedded/index.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<template>
22
<div class="sqlbot-assistant-container">
33
<div class="header" :style="{ color: customSet.header_font_color }">
4-
<el-icon size="20"> </el-icon>
54
<el-icon v-if="!logo" class="logo" size="30">
65
<LOGO></LOGO>
76
</el-icon>

0 commit comments

Comments
 (0)