mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
perf: 对话日志摘要样式优化 (#315)
This commit is contained in:
parent
62c959f905
commit
e5e2ece1bd
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<el-drawer v-model="visible" size="60%" @close="closeHandle" class="chat-record-drawer">
|
||||
<template #header>
|
||||
<h4>{{ currentAbstract }}</h4>
|
||||
<h4 class="single-line">{{ currentAbstract }}</h4>
|
||||
</template>
|
||||
<div
|
||||
v-loading="paginationConfig.current_page === 1 && loading"
|
||||
|
|
@ -120,6 +120,11 @@ defineExpose({
|
|||
})
|
||||
</script>
|
||||
<style lang="scss">
|
||||
.single-line {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.chat-record-drawer {
|
||||
.el-drawer__body {
|
||||
background: var(--app-layout-bg-color);
|
||||
|
|
|
|||
Loading…
Reference in New Issue