From 93b82523d1b2df9098a5b3092c853df6f59f4279 Mon Sep 17 00:00:00 2001 From: 0xrohitgarg Date: Tue, 3 Dec 2024 21:33:03 +0530 Subject: [PATCH] chore: release 0.0.15 --- CHANGELOG.md | 5 +++++ package.json | 2 +- src/components/chat/ChatInterface.vue | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e91210..1baf4ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +### [0.0.15]() - 2024-12-03 + +### Fixed +- Hotfix collection refresh error + ### [0.0.14]() - 2024-12-03 ### Added diff --git a/package.json b/package.json index 4feac22..332a221 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@videodb/chat-vue", "description": "Chat component for Director", - "version": "0.0.14", + "version": "0.0.15", "author": "VideoDB", "license": "Apache-2.0", "private": false, diff --git a/src/components/chat/ChatInterface.vue b/src/components/chat/ChatInterface.vue index 9ddd749..f42b0d8 100644 --- a/src/components/chat/ChatInterface.vue +++ b/src/components/chat/ChatInterface.vue @@ -397,7 +397,7 @@ const dynamicActionCards = computed(() => { return props.defaultScreenConfig.actionCardQueries || (!isFreshUser.value && activeCollectionData.value && - activeCollectionVideos.value.length > 0) + activeCollectionVideos?.value?.length > 0) ? [ { component: UploadVideoQueryCard,