From 175950e1249a4890632c819ead1454ae61c0606c Mon Sep 17 00:00:00 2001 From: 0xrohitgarg Date: Tue, 3 Dec 2024 18:25:01 +0530 Subject: [PATCH] design changes --- CHANGELOG.md | 8 ++++++++ src/components/chat/ChatInput.vue | 6 +++--- src/components/chat/ChatInterface.vue | 4 ++-- src/components/chat/elements/DefaultScreen.vue | 14 -------------- src/components/chat/elements/Sidebar.vue | 6 +++--- 5 files changed, 16 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79c814b..b5f792e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +### [0.0.13]() - 2024-12-03 + +### Added +- Chat Input UX improvements + - Context Icon + - Query card copy changes + - Sidebar design changes + ### [0.0.12]() - 2024-12-03 ### Added diff --git a/src/components/chat/ChatInput.vue b/src/components/chat/ChatInput.vue index 778ed05..f802031 100644 --- a/src/components/chat/ChatInput.vue +++ b/src/components/chat/ChatInput.vue @@ -37,7 +37,7 @@
diff --git a/src/components/chat/ChatInterface.vue b/src/components/chat/ChatInterface.vue index 8961645..d4180d8 100644 --- a/src/components/chat/ChatInterface.vue +++ b/src/components/chat/ChatInterface.vue @@ -393,7 +393,7 @@ const chatLoading = computed(() => ); const dynamicActionCards = computed(() => { return props.defaultScreenConfig.actionCardQueries || - (!isFreshUser && + (!isFreshUser.value && activeCollectionData.value && activeCollectionVideos.value.length > 0) ? [ @@ -401,7 +401,7 @@ const dynamicActionCards = computed(() => { component: UploadVideoQueryCard, isDemo: isFreshUser.value, content: - "Upload [this video](https://www.youtube.com/watch?v=FgrO9ADPZSA) and generate a bullet point summary.", + "Upload https://youtu.be/FgrO9ADPZSA and generate a bullet point summary.", type: "primary", action: "chat", icon: FileUploadIcon, diff --git a/src/components/chat/elements/DefaultScreen.vue b/src/components/chat/elements/DefaultScreen.vue index fe6f912..e46000b 100644 --- a/src/components/chat/elements/DefaultScreen.vue +++ b/src/components/chat/elements/DefaultScreen.vue @@ -172,20 +172,6 @@ > Videos in {{ collectionName }}
-