diff options
| author | taehoon <th.dev91@gmail.com> | 2019-05-06 16:16:43 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-05-06 16:16:43 -0400 |
| commit | 1a3799bfacd70fc51bc58a5a8b7ac2c88f9ed7dd (patch) | |
| tree | b23a2664c9d17b6fc13c99460ec4f7ad2e5a022d | |
| parent | 3adfbc0357742ff69c15ceebb0eb0d3339459536 (diff) | |
fix wrong inlineExpanded
| -rw-r--r-- | src/components/conversation/conversation.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue index ff5b8168..877d65ec 100644 --- a/src/components/conversation/conversation.vue +++ b/src/components/conversation/conversation.vue @@ -11,7 +11,7 @@ @goto="setHighlight" @toggleExpanded="toggleExpanded" :key="status.id" - :inlineExpanded="collapsable" + :inlineExpanded="collapsable && isExpanded" :statusoid="status" :focused="focused(status.id)" :inConversation="isExpanded" |
