Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions ui/src/views/chat/base/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
</template>
</AiChat>
</div>
<div class="chat__footer"></div>
</div>
</template>
<script setup lang="ts">
Expand Down Expand Up @@ -100,25 +99,6 @@ function refresh(id: string) {
overflow: hidden;
}

&__footer {
background: #f3f7f9;
height: 80px;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
box-sizing: border-box;
border-radius: 8px !important;
&:before {
background: linear-gradient(0deg, #f3f7f9 0%, rgba(243, 247, 249, 0) 100%);
content: '';
position: absolute;
width: 100%;
top: -16px;
left: 0;
height: 16px;
}
}
.chat-width {
// max-width: 80%;
margin: 0 auto;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code contains an unnecessary <div class="chat__footer"> element at the end of the template that has no closing tag.

To address this issue:

  1. Remove the </div> after .chat-width.

  2. Ensure all HTML elements have properly nested and closed tags to avoid rendering errors or visual problems in browsers.

Expand Down