diff --git a/ui/src/components/ai-chat/component/knowledge-source-component/ParagraphCard.vue b/ui/src/components/ai-chat/component/knowledge-source-component/ParagraphCard.vue index 8451894d3..0ef5a34ab 100644 --- a/ui/src/components/ai-chat/component/knowledge-source-component/ParagraphCard.vue +++ b/ui/src/components/ai-chat/component/knowledge-source-component/ParagraphCard.vue @@ -3,6 +3,7 @@ shadow="never" :title="index + 1 + '.' + data.title || '-'" class="paragraph-source-card cursor mb-8 paragraph-source-card-height" + :style="{ 'height': data?.document_name?.trim() ? '300px' : '260px' }" :class="data.is_active ? '' : 'disabled'" :showIcon="false" > @@ -17,7 +18,12 @@