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 131b5b3 commit d9787bbCopy full SHA for d9787bb
ui/src/components/ai-chat/component/question-content/index.vue
@@ -3,7 +3,10 @@
3
<div class="question-content item-content mb-16 lighter">
4
<div
5
class="content p-12-16 border-r-8"
6
- :class="document_list.length >= 2 ? 'media_2' : `media_${document_list.length}`"
+ :class="
7
+ (document_list.length >= 2 ? 'media_2' : `media_${document_list.length}`) ||
8
+ (other_list.length >= 2 ? 'media_2' : `media_${other_list.length}`)
9
+ "
10
>
11
<div class="text break-all pre-wrap">
12
<div class="mb-8" v-if="document_list.length">
0 commit comments