Browse Source

fix: chat on start bug (#1588)

tags/0.3.31-fix1
Joel 1 year ago
parent
commit
b23de4affc
No account linked to committer's email address

+ 1
- 0
web/app/components/explore/universal-chat/index.tsx View File

onUnpin={handleUnpin} onUnpin={handleUnpin}
controlUpdateList={controlUpdateConversationList} controlUpdateList={controlUpdateConversationList}
onDelete={handleDelete} onDelete={handleDelete}
onStartChat={() => handleConversationIdChange('-1')}
/> />
) )
} }

+ 1
- 1
web/app/components/share/chat/index.tsx View File

onUnpin={handleUnpin} onUnpin={handleUnpin}
controlUpdateList={controlUpdateConversationList} controlUpdateList={controlUpdateConversationList}
onDelete={handleDelete} onDelete={handleDelete}
onStartChat={handleStartChat}
onStartChat={() => handleConversationIdChange('-1')}
/> />
) )
} }

Loading…
Cancel
Save