This commit is contained in:
Yidadaa 2023-04-26 02:05:35 +08:00
parent a7a8aad9bc
commit 3cda44e05b

View File

@ -113,7 +113,7 @@ export function ChatList(props: { narrow?: boolean }) {
{sessions.map((item, i) => (
<ChatItem
title={item.topic}
time={item.lastUpdate}
time={new Date(item.lastUpdate).toLocaleString()}
count={item.messages.length}
key={item.id}
id={item.id}