diff --git a/app/javascript/dashboard/components/widgets/Thumbnail.vue b/app/javascript/dashboard/components/widgets/Thumbnail.vue
index 7b222aa7e..5998dd338 100644
--- a/app/javascript/dashboard/components/widgets/Thumbnail.vue
+++ b/app/javascript/dashboard/components/widgets/Thumbnail.vue
@@ -156,13 +156,14 @@ export default {
diff --git a/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue b/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue
index 7e8ad507c..a5695b22c 100644
--- a/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue
+++ b/app/javascript/dashboard/components/widgets/conversation/ConversationCard.vue
@@ -95,9 +95,6 @@ export default {
activeInbox: 'getSelectedInbox',
accountId: 'getCurrentAccountId',
}),
- bulkActionCheck() {
- return !this.hideThumbnail && !this.hovered && !this.selected;
- },
chatMetadata() {
return this.chat.meta || {};
},
@@ -182,10 +179,10 @@ export default {
router.push({ path });
},
- onCardHover() {
+ onThumbnailHover() {
this.hovered = !this.hideThumbnail;
},
- onCardLeave() {
+ onThumbnailLeave() {
this.hovered = false;
},
onSelectConversation(checked) {
@@ -249,28 +246,36 @@ export default {
'has-inbox-name': showInboxName,
'conversation-selected': selected,
}"
- @mouseenter="onCardHover"
- @mouseleave="onCardLeave"
@click="onCardClick"
@contextmenu="openContextMenu($event)"
>
-
-
+
@@ -400,7 +405,7 @@ export default {
}
.checkbox-wrapper {
- @apply h-10 w-10 flex items-center justify-center rounded-full cursor-pointer mt-4 hover:bg-woot-100 dark:hover:bg-woot-800;
+ @apply h-10 w-10 flex items-center justify-center rounded-full cursor-pointer mt-4;
input[type='checkbox'] {
@apply m-0 cursor-pointer;