summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGrigorii K. Shartsev <me@shgk.me>2023-06-23 10:54:06 +0200
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2023-07-18 15:36:50 +0000
commit9623e8fcdd02f919aab690334ec2814fec1b4927 (patch)
tree080d4b38cc55b23e176be36efc4018ca4d3d0236 /src
parentdbfe2339e7d302c86c1f7a965fde03be34fad919 (diff)
fix(LeftSidebar): remove unused NcListItem.isActive
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
Diffstat (limited to 'src')
-rw-r--r--src/components/LeftSidebar/ConversationsList/Conversation.vue9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/components/LeftSidebar/ConversationsList/Conversation.vue b/src/components/LeftSidebar/ConversationsList/Conversation.vue
index c1667a1cd..39f3db87b 100644
--- a/src/components/LeftSidebar/ConversationsList/Conversation.vue
+++ b/src/components/LeftSidebar/ConversationsList/Conversation.vue
@@ -25,7 +25,6 @@
:class="{'unread-mention-conversation': item.unreadMention}"
:anchor-id="`conversation_${item.token}`"
:actions-aria-label="t('spreed', 'Conversation actions')"
- :active="isActive"
:to="to"
:bold="!!item.unreadMessages"
:counter-number="item.unreadMessages"
@@ -326,14 +325,6 @@ export default {
}
: ''
},
-
- isActive() {
- if (!this.isSearchResult) {
- return this.$store.getters.getToken() === this.to.params.token
- } else {
- return false
- }
- },
},
// TODO: move the implementation to @nextcloud-vue/NcListItem