Fix time zone used in query history. Closes #694

This commit is contained in:
sabaimran 2024-05-01 15:31:48 +05:30
parent 7fd57d737e
commit f24495e0e6

View file

@ -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"]