We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21509f3 commit 163df77Copy full SHA for 163df77
2 files changed
docs/content.en/docs/release-notes/_index.md
@@ -28,6 +28,7 @@ Information about release notes of Coco Server is provided here.
28
### 🐛 Bug fix
29
30
- fix: several issues around search #502
31
+- fix: fixed the newly created session has no title when it is deleted #511
32
33
### ✈️ Improvements
34
src/components/Common/HistoryList/index.tsx
@@ -368,7 +368,7 @@ const HistoryList: FC<HistoryListProps> = (props) => {
368
</DialogTitle>
369
<Description className="text-sm">
370
{t("history_list.delete_modal.description", {
371
- replace: [active?._source?.title || active?._id],
+ replace: [active?._source?.title || active?._source?.message || active?._id],
372
})}
373
</Description>
374
</div>
0 commit comments