diff --git a/ui/src/components/ai-chat/ParagraphSourceDialog.vue b/ui/src/components/ai-chat/ParagraphSourceDialog.vue
index 2c8749dc3a7..abe090e940a 100644
--- a/ui/src/components/ai-chat/ParagraphSourceDialog.vue
+++ b/ui/src/components/ai-chat/ParagraphSourceDialog.vue
@@ -34,7 +34,11 @@
{{ item.similarity?.toFixed(3) }}
- {{ item.content }}
+
@@ -67,6 +71,7 @@
import { ref, watch, onBeforeUnmount } from 'vue'
import { cloneDeep } from 'lodash'
import { arraySort } from '@/utils/utils'
+import { MdPreview } from 'md-editor-v3'
const emit = defineEmits(['refresh'])
const ParagraphDialogRef = ref()
@@ -109,6 +114,12 @@ defineExpose({ open })
@media only screen and (max-width: 768px) {
.paragraph-source {
width: 90% !important;
+ .footer-content {
+ display: block;
+ }
+ .paragraph-source-card {
+ height: 225px;
+ }
}
}