Skip to content

Commit

Permalink
chore: release 0.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
0xrohitgarg committed Dec 3, 2024
1 parent 5f81116 commit 93b8252
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### [0.0.15]() - 2024-12-03

### Fixed
- Hotfix collection refresh error

### [0.0.14]() - 2024-12-03

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/components/chat/ChatInterface.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 93b8252

Please sign in to comment.