fix emoji for conversation summary

This commit is contained in:
Henry Jameson 2026-08-04 14:33:17 +03:00
commit 4516718649
2 changed files with 6 additions and 4 deletions

View file

@ -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') }}

View file

@ -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') }}