We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
learning
undefined
1 parent 3eb93e0 commit 19cef77Copy full SHA for 19cef77
app/components/DeepResearch/NodeDetail.vue
@@ -84,12 +84,13 @@
84
node.status === 'processing_serach_result'
85
"
86
/>
87
- <p
88
- v-for="(learning, index) in node.learnings"
89
- class="prose max-w-none dark:prose-invert break-words"
90
- :key="index"
91
- v-html="marked(`- ${learning.learning}`, { gfm: true })"
92
- />
+ <template v-for="({ learning }, index) in node.learnings" :key="index">
+ <p
+ v-if="learning"
+ class="prose max-w-none dark:prose-invert break-words"
+ v-html="marked(`- ${learning}`, { gfm: true })"
+ ></p>
93
+ </template>
94
<span v-if="!node.learnings?.length"> - </span>
95
96
<!-- Follow up questions -->
0 commit comments