fix emoji for conversation summary
This commit is contained in:
parent
2eb33e6e42
commit
4516718649
2 changed files with 6 additions and 4 deletions
|
|
@ -21,8 +21,9 @@
|
|||
<div class="title">
|
||||
<template v-if="isConversation">
|
||||
<RichContent
|
||||
v-if="messages[0]?.summary"
|
||||
:html="messages[0].summary"
|
||||
v-if="messages[0]?.summary_raw_html"
|
||||
:html="messages[0].summary_raw_html"
|
||||
:emoji="messages[0].emojis"
|
||||
/>
|
||||
<template v-else>
|
||||
{{ $t('timeline.conversation') }}
|
||||
|
|
|
|||
|
|
@ -11,8 +11,9 @@
|
|||
>
|
||||
<h1 class="title">
|
||||
<RichContent
|
||||
v-if="conversation[0]?.summary"
|
||||
:html="conversation[0].summary"
|
||||
v-if="conversation[0]?.summary_raw_html"
|
||||
:html="conversation[0].summary_raw_html"
|
||||
:emoji="conversation[0].emojis"
|
||||
/>
|
||||
<template v-else>
|
||||
{{ $t('timeline.conversation') }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue