How to create API key for Api gateway?
@@ -46,7 +46,7 @@
DocsGPT
diff --git a/extensions/chrome/popup.js b/extensions/chrome/popup.js
index 20f7bce38..70b7415d2 100644
--- a/extensions/chrome/popup.js
+++ b/extensions/chrome/popup.js
@@ -3,7 +3,7 @@ document.getElementById("message-form").addEventListener("submit", function(even
var message = document.getElementById("message-input").value;
chrome.runtime.sendMessage({msg: "sendMessage", message: message}, function(response) {
console.log(response.response);
- msg_html = '
'
+ msg_html = '
'
msg_html += message
msg_html += '
'
document.getElementById("messages").innerHTML += msg_html;
diff --git a/frontend/src/conversation/ConversationBubble.tsx b/frontend/src/conversation/ConversationBubble.tsx
index 2793a9bf6..37349660d 100644
--- a/frontend/src/conversation/ConversationBubble.tsx
+++ b/frontend/src/conversation/ConversationBubble.tsx
@@ -42,7 +42,7 @@ const ConversationBubble = forwardRef<
bubble = (
-
+
{message}
@@ -148,7 +148,7 @@ const ConversationBubble = forwardRef<
handleFeedback?.('LIKE')}
@@ -173,7 +173,7 @@ const ConversationBubble = forwardRef<
{sources && openSource !== null && sources[openSource] && (
-
+
Source: {sources[openSource].title}
diff --git a/frontend/src/upload/Upload.tsx b/frontend/src/upload/Upload.tsx
index 0edc971ba..755a9ad43 100644
--- a/frontend/src/upload/Upload.tsx
+++ b/frontend/src/upload/Upload.tsx
@@ -41,9 +41,9 @@ export default function Upload({
{progress?.percentage || 0}%
@@ -55,7 +55,7 @@ export default function Upload({
setProgress(undefined);
setModalState('INACTIVE');
}}
- className={`rounded-3xl bg-blue-3000 px-4 py-2 text-sm font-medium text-white ${
+ className={`rounded-3xl bg-purple-30 px-4 py-2 text-sm font-medium text-white ${
isCancellable ? '' : 'hidden'
}`}
>
@@ -189,7 +189,7 @@ export default function Upload({
Name
-
+
Choose Files
@@ -206,7 +206,7 @@ export default function Upload({
diff --git a/frontend/tailwind.config.cjs b/frontend/tailwind.config.cjs
index 64fb76f22..8e395a07d 100644
--- a/frontend/tailwind.config.cjs
+++ b/frontend/tailwind.config.cjs
@@ -24,6 +24,7 @@ module.exports = {
'blue-1000': '#7D54D1',
'blue-2000': '#002B49',
'blue-3000': '#4B02E2',
+ 'purple-30': '#7D54D1',
'blue-4000': 'rgba(0, 125, 255, 0.36)',
'blue-5000': 'rgba(0, 125, 255)',
},