diff --git a/src/interface/desktop/chat.html b/src/interface/desktop/chat.html index c26fe4b5..73e88159 100644 --- a/src/interface/desktop/chat.html +++ b/src/interface/desktop/chat.html @@ -1509,7 +1509,7 @@ #chat-input { font-family: var(--font-family); font-size: small; - height: 36px; + height: 48px; border-radius: 16px; resize: none; overflow-y: hidden; diff --git a/src/khoj/interface/email/task.html b/src/khoj/interface/email/task.html index 1e78ce34..92f0785a 100644 --- a/src/khoj/interface/email/task.html +++ b/src/khoj/interface/email/task.html @@ -11,20 +11,18 @@
Hey {{name}}!
-I've shared your automation results below:
+The automation query I ran on your behalf: {{query}}
-You can view, delete your automations via the settings page
+The automation I ran on your behalf: {{query}}
+You can manage your automations via the settings page.
- Khoj
diff --git a/src/khoj/interface/web/chat.html b/src/khoj/interface/web/chat.html index cb18ba0a..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"] @@ -2164,7 +2164,7 @@ To get started, just start typing below. You can also type / to see a list of co #chat-input { font-family: var(--font-family); font-size: medium; - height: 36px; + height: 48px; border-radius: 16px; resize: none; overflow-y: hidden; diff --git a/src/khoj/interface/web/config_automation.html b/src/khoj/interface/web/config_automation.html index 1b067996..ca0a4257 100644 --- a/src/khoj/interface/web/config_automation.html +++ b/src/khoj/interface/web/config_automation.html @@ -6,14 +6,13 @@