diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index 696167831..a894348af 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -358,9 +358,6 @@ const conversation = { canDive() { return this.isTreeView && this.isExpanded }, - maybeHighlight() { - return this.isExpanded ? this.highlight : null - }, ...mapPiniaState(useMergedConfigStore, ['mergedConfig']), ...mapState({ mastoUserSocketStatus: (state) => state.api.mastoUserSocketStatus, @@ -435,7 +432,7 @@ const conversation = { getReplies(id) { return this.replies[id] || [] }, - getHighlight() { + maybeHighlight() { return this.isExpanded ? this.highlight : null }, setHighlight(id) {