fix delete log annotation (#4201)

Co-authored-by: langyong <langyong@lixiang.com>
pull/4208/head
Louie Long 2 years ago committed by GitHub
parent a79941df22
commit ca5081e327
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -260,11 +260,7 @@ const Chat: FC<IChatProps> = ({
return {
...item,
content: item.content,
annotation: {
...(item.annotation || {}),
id: '',
logAnnotation: undefined, // remove log
} as Annotation,
annotation: undefined,
}
}
return item

@ -137,8 +137,8 @@ const getFormattedChatList = (messages: ChatMessage[], conversationId: string, t
if (item.annotation) {
return {
id: '',
authorName: '',
id: item.annotation.id,
authorName: item.annotation.account.name,
logAnnotation: item.annotation,
created_at: 0,
}

@ -57,6 +57,7 @@ export type ModelConfigDetail = {
}
export type LogAnnotation = {
id: string
content: string
account: {
id: string

Loading…
Cancel
Save