diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index b339dfd3f..491a8543f 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -339,11 +339,6 @@ const conversation = { canDive () { return this.isTreeView && this.isExpanded }, - focused () { - return (id) => { - return (this.isExpanded) && id === this.highlight - } - }, maybeHighlight () { return this.isExpanded ? this.highlight : null }, @@ -406,6 +401,9 @@ const conversation = { }) } }, + isFocused (id) { + return (this.isExpanded) && id === this.highlight + }, getReplies (id) { return this.replies[id] || [] },