diff options
| author | wakarimasen <wakarimasen@airmail.cc> | 2017-03-05 14:34:14 +0100 |
|---|---|---|
| committer | wakarimasen <wakarimasen@airmail.cc> | 2017-03-05 14:34:14 +0100 |
| commit | c921662036fe39f5146d5a36b4b018af3cfc2635 (patch) | |
| tree | a5afbde367b54d81f321dbd15cbf5d70d6ac60cb /src/components/status_or_conversation | |
| parent | 6bcbed38d0952a332a900a615bfe8c7a553e8fc4 (diff) | |
Add inConversation prop to status
Diffstat (limited to 'src/components/status_or_conversation')
| -rw-r--r-- | src/components/status_or_conversation/status_or_conversation.vue | 2 |
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..1e21bdcd 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" :inConversation="false" :statusoid="statusoid"></status> </div> </template> |
