mirror of
https://github.com/Yidadaa/ChatGPT-Next-Web.git
synced 2025-08-20 04:42:46 +08:00
fixup
This commit is contained in:
@@ -113,7 +113,7 @@ export function ChatList(props: { narrow?: boolean }) {
|
|||||||
{sessions.map((item, i) => (
|
{sessions.map((item, i) => (
|
||||||
<ChatItem
|
<ChatItem
|
||||||
title={item.topic}
|
title={item.topic}
|
||||||
time={item.lastUpdate}
|
time={new Date(item.lastUpdate).toLocaleString()}
|
||||||
count={item.messages.length}
|
count={item.messages.length}
|
||||||
key={item.id}
|
key={item.id}
|
||||||
id={item.id}
|
id={item.id}
|
||||||
|
Reference in New Issue
Block a user