Yidadaa 1 năm trước cách đây
mục cha
commit
3cda44e05b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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}