We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62c959f commit e5e2eceCopy full SHA for e5e2ece
ui/src/views/log/component/ChatRecordDrawer.vue
@@ -1,7 +1,7 @@
1
<template>
2
<el-drawer v-model="visible" size="60%" @close="closeHandle" class="chat-record-drawer">
3
<template #header>
4
- <h4>{{ currentAbstract }}</h4>
+ <h4 class="single-line">{{ currentAbstract }}</h4>
5
</template>
6
<div
7
v-loading="paginationConfig.current_page === 1 && loading"
@@ -120,6 +120,11 @@ defineExpose({
120
})
121
</script>
122
<style lang="scss">
123
+.single-line {
124
+ white-space: nowrap;
125
+ overflow: hidden;
126
+ text-overflow: ellipsis;
127
+}
128
.chat-record-drawer {
129
.el-drawer__body {
130
background: var(--app-layout-bg-color);
0 commit comments