Skip to content

Commit b00ad14

Browse files
fix: fix bug
1 parent 3f5180d commit b00ad14

File tree

17 files changed

+86
-37
lines changed

17 files changed

+86
-37
lines changed
Lines changed: 3 additions & 0 deletions
Loading

ui/src/assets/logo/logo_lark.svg

Lines changed: 12 additions & 0 deletions
Loading

ui/src/assets/logo/logo_slack.svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 7 additions & 0 deletions
Loading

ui/src/assets/logo/logo_wechat.svg

Lines changed: 3 additions & 0 deletions
Loading

ui/src/components/ai-chat/component/ParagraphCard.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:showIcon="false"
88
>
99
<template #icon>
10-
<AppAvatar class="mr-12 avatar-light" :size="22"> {{ index + 1 + '' }}</AppAvatar>
10+
<el-avatar class="mr-12 avatar-light" :size="22"> {{ index + 1 + '' }}</el-avatar>
1111
</template>
1212
<div class="active-button primary">{{ score?.toFixed(3) || data.similarity?.toFixed(3) }}</div>
1313
<template #description>
@@ -37,9 +37,9 @@
3737
</template>
3838
</el-text>
3939
<div class="flex align-center item" style="line-height: 32px">
40-
<AppAvatar class="mr-8 avatar-blue" shape="square" :size="18">
40+
<el-avatar class="mr-8 avatar-blue" shape="square" :size="18">
4141
<img src="@/assets/knowledge/icon_document.svg" style="width: 58%" alt="" />
42-
</AppAvatar>
42+
</el-avatar>
4343

4444
<span class="ellipsis-1 break-all" :title="data?.dataset_name">
4545
{{ data?.dataset_name }}</span

ui/src/components/ai-chat/component/question-content/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@
8888
fit="cover"
8989
style="width: 28px; height: 28px; display: block"
9090
/>
91-
<AppAvatar v-else>
91+
<el-avatar v-else>
9292
<img src="@/assets/user-icon.svg" style="width: 50%" alt="" />
93-
</AppAvatar>
93+
</el-avatar>
9494
</div>
9595
</div>
9696
</template>

ui/src/components/ai-chat/component/transition-content/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
fit="cover"
1414
style="width: 28px; height: 28px; display: block"
1515
/>
16-
<AppAvatar v-else>
16+
<el-avatar v-else>
1717
<img src="@/assets/user-icon.svg" style="width: 50%" alt="" />
18-
</AppAvatar>
18+
</el-avatar>
1919
</div>
2020
</div>
2121
</template>

ui/src/components/ai-chat/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ defineExpose({
625625
})
626626
</script>
627627
<style lang="scss">
628-
@import './index.scss';
628+
@use './index.scss';
629629
.firstUserInput {
630630
height: 100%;
631631
display: flex;

0 commit comments

Comments
 (0)