From f24495e0e6154a712b1e6ec2a51cdb647a46159a Mon Sep 17 00:00:00 2001 From: sabaimran Date: Wed, 1 May 2024 15:31:48 +0530 Subject: [PATCH] Fix time zone used in query history. Closes #694 --- src/khoj/interface/web/chat.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/khoj/interface/web/chat.html b/src/khoj/interface/web/chat.html index 86cfdf71..46580a72 100644 --- a/src/khoj/interface/web/chat.html +++ b/src/khoj/interface/web/chat.html @@ -1170,7 +1170,7 @@ To get started, just start typing below. You can also type / to see a list of co 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"]); @@ -1265,7 +1265,7 @@ To get started, just start typing below. You can also type / to see a list of co 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"]