开发: 路由改成hash格式

This commit is contained in:
zhengw
2023-04-12 10:19:03 +08:00
parent d67758d361
commit e2b466042f
3 changed files with 9 additions and 7 deletions

View File

@@ -97,7 +97,7 @@ export const ChatRecord: React.FC<IChatItem> = (props) => {
return (
<div
style={{ padding: '8px 0', borderBottom: '1px solid #eee' }}
key={`${item.msgtime}_${item.type}`}
key={`${item.msgtime}_${item.type}_${item.content}`}
>
{chatRecordContent(item)}
</div>