diff --git a/src/components/LeftSidebar/ConversationsList/ConversationTagHeader.vue b/src/components/LeftSidebar/ConversationsList/ConversationTagHeader.vue index 0c8f063a1e6..a62ebdbffdc 100644 --- a/src/components/LeftSidebar/ConversationsList/ConversationTagHeader.vue +++ b/src/components/LeftSidebar/ConversationsList/ConversationTagHeader.vue @@ -13,7 +13,6 @@ import { useStore } from 'vuex' import NcActionButton from '@nextcloud/vue/components/NcActionButton' import NcActionSeparator from '@nextcloud/vue/components/NcActionSeparator' import NcAppNavigationItem from '@nextcloud/vue/components/NcAppNavigationItem' -import NcCounterBubble from '@nextcloud/vue/components/NcCounterBubble' import NcIconSvgWrapper from '@nextcloud/vue/components/NcIconSvgWrapper' import IconArrowDown from 'vue-material-design-icons/ArrowDown.vue' import IconArrowUp from 'vue-material-design-icons/ArrowUp.vue' @@ -26,8 +25,6 @@ import { useConversationTagsStore } from '../../../stores/conversationTags.ts' export type TagHeaderItem = ConversationTag & { _type: 'tag-header' unreadCount: number - unreadMention: boolean - unreadMentionDirect: boolean isFirst?: boolean isLast?: boolean } @@ -40,15 +37,6 @@ const vuexStore = useStore() const tagsStore = useConversationTagsStore() const isCustomTag = computed(() => props.item.type === 'custom') -const counterType = computed(() => { - if (props.item.unreadMentionDirect) { - return 'highlighted' - } else if (props.item.unreadMention) { - return 'outlined' - } else { - return '' - } -}) /** * Assign a new name to the tag via dialog @@ -139,9 +127,6 @@ async function handleMarkReadTag() { @update:open="tagsStore.toggleCollapsed(item.id)">
  • -