Skip to content

Commit

Permalink
components: MiniVideoRecorder: Update clickable area to access record…
Browse files Browse the repository at this point in the history
…ed content table

Signed-off-by: Arturo Manzoli <arturomanzoli@gmail.com>
  • Loading branch information
ArturoManzoli committed Mar 27, 2024
1 parent c786320 commit f348be6
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/components/mini-widgets/MiniVideoRecorder.vue
Expand Up @@ -34,8 +34,14 @@
</div>
<div v-if="numberOfVideosOnDB > 0" class="flex justify-center w-8">
<v-divider vertical class="h-6" />
<v-badge color="info" :content="numberOfVideosOnDB" :dot="isOutside || isVideoLibraryDialogOpen"
><v-icon class="w-6 h-6 text-slate-100 ml-3" @click="isVideoLibraryDialogOpen = true">
<v-badge
color="info"
:content="numberOfVideosOnDB"
:dot="isOutside || isVideoLibraryDialogOpen"
class="cursor-pointer"
@click="isVideoLibraryDialogOpen = true"
>
<v-icon class="w-6 h-6 text-slate-100 ml-3" @click="isVideoLibraryDialogOpen = true">
mdi-video-box
</v-icon></v-badge
>
Expand Down Expand Up @@ -76,7 +82,7 @@
</div>
</div>
</v-dialog>
<v-dialog v-model="isVideoLibraryDialogOpen" width="auto">
<v-dialog v-model="isVideoLibraryDialogOpen" width="900px">
<ConfigurationVideoView as-video-library />
</v-dialog>
</template>
Expand Down

0 comments on commit f348be6

Please sign in to comment.