aboutsummaryrefslogtreecommitdiff
path: root/src/components/status_or_conversation
diff options
context:
space:
mode:
authorwakarimasen <wakarimasen@airmail.cc>2017-03-05 16:31:01 +0100
committerwakarimasen <wakarimasen@airmail.cc>2017-03-05 16:31:01 +0100
commit289326855caa5e763439f89f2829c430056e79c3 (patch)
tree6a538327177a109f292e1cf6ec281e97c12e2f96 /src/components/status_or_conversation
parent22e8258a56ab0828231bc0e510b52dd39eebb5c7 (diff)
Add focused prop to status
Diffstat (limited to 'src/components/status_or_conversation')
-rw-r--r--src/components/status_or_conversation/status_or_conversation.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status_or_conversation/status_or_conversation.vue b/src/components/status_or_conversation/status_or_conversation.vue
index 4fabfab2..4aaaf2ff 100644
--- a/src/components/status_or_conversation/status_or_conversation.vue
+++ b/src/components/status_or_conversation/status_or_conversation.vue
@@ -1,7 +1,7 @@
<template>
<div>
<conversation v-if="expanded" @toggleExpanded="toggleExpanded" :collapsable="true" :statusoid="statusoid"></conversation>
- <status v-if="!expanded" @toggleExpanded="toggleExpanded" :expandable="true" :statusoid="statusoid"></status>
+ <status v-if="!expanded" @toggleExpanded="toggleExpanded" :expandable="true" :statusoid="statusoid" :focused="false"></status>
</div>
</template>