Yidadaa 1 year ago
parent
commit
3cda44e05b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/components/chat-list.tsx

+ 1 - 1
app/components/chat-list.tsx

@@ -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}