diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue index c37a2ca26..2f3de3a86 100644 --- a/src/components/conversation/conversation.vue +++ b/src/components/conversation/conversation.vue @@ -94,7 +94,7 @@ :statusoid="status" :expandable="!isExpanded" :show-pinned="pinnedStatusIdsObject && pinnedStatusIdsObject[status.id]" - :focused="focused(status.id)" + :focused="isFocused(status.id)" :in-conversation="isExpanded" :highlight="getHighlight()" :replies="getReplies(status.id)" @@ -168,7 +168,7 @@ :pinned-status-ids-object="pinnedStatusIdsObject" :profile-user-id="profileUserId" - :focused="focused" + :is-focused-function="isFocused" :get-replies="getReplies" :highlight="maybeHighlight" :set-highlight="setHighlight" @@ -199,7 +199,7 @@ :statusoid="status" :expandable="!isExpanded" :show-pinned="pinnedStatusIdsObject && pinnedStatusIdsObject[status.id]" - :focused="focused(status.id)" + :focused="isFocused(status.id)" :in-conversation="isExpanded" :highlight="getHighlight()" :replies="getReplies(status.id)" diff --git a/src/components/thread_tree/thread_tree.js b/src/components/thread_tree/thread_tree.js index 3e9c87273..2afe4e571 100644 --- a/src/components/thread_tree/thread_tree.js +++ b/src/components/thread_tree/thread_tree.js @@ -26,7 +26,7 @@ const ThreadTree = { pinnedStatusIdsObject: Object, profileUserId: String, - focused: Function, + isFocusedFunction: Function, highlight: String, getReplies: Function, setHighlight: Function, diff --git a/src/components/thread_tree/thread_tree.vue b/src/components/thread_tree/thread_tree.vue index d881e8a12..4ffe463fe 100644 --- a/src/components/thread_tree/thread_tree.vue +++ b/src/components/thread_tree/thread_tree.vue @@ -7,7 +7,7 @@ :statusoid="status" :expandable="!isExpanded" :show-pinned="pinnedStatusIdsObject && pinnedStatusIdsObject[status.id]" - :focused="focused(status.id)" + :focused="isFocusedFunction(status.id)" :in-conversation="isExpanded" :highlight="highlight" :replies="getReplies(status.id)" @@ -52,7 +52,7 @@ :pinned-status-ids-object="pinnedStatusIdsObject" :profile-user-id="profileUserId" - :focused="focused" + :is-focused-function="isFocusedFunction" :get-replies="getReplies" :highlight="highlight" :set-highlight="setHighlight"