Skip to content

Commit

Permalink
Fix time zone used in query history. Closes #694
Browse files Browse the repository at this point in the history
  • Loading branch information
sabaimran committed May 1, 2024
1 parent 7fd57d7 commit f24495e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/khoj/interface/web/chat.html
Expand Up @@ -1170,7 +1170,7 @@
chat_log.message,
chat_log.by,
chat_log.context,
new Date(chat_log.created),
new Date(chat_log.created + "Z"),
chat_log.onlineContext,
chat_log.intent?.type,
chat_log.intent?.["inferred-queries"]);
Expand Down Expand Up @@ -1265,7 +1265,7 @@
chat_log.message,
chat_log.by,
chat_log.context,
new Date(chat_log.created),
new Date(chat_log.created + "Z"),
chat_log.onlineContext,
chat_log.intent?.type,
chat_log.intent?.["inferred-queries"]
Expand Down

0 comments on commit f24495e

Please sign in to comment.