diff options
| author | shpuld <shp@cock.li> | 2018-04-11 00:20:42 +0300 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2018-04-11 00:20:42 +0300 |
| commit | 2258c9c1e7a2d8d6919e2514b5a8cdda74a4468e (patch) | |
| tree | b66cf0beb4078af2bef9cc40829b6eab2e0604ad | |
| parent | 49aa2d5fb7e13398c2fde83966cb8ae2fe228008 (diff) | |
Make collapsed-state hide chat and not the wrong way around
| -rw-r--r-- | src/components/chat_panel/chat_panel.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/chat_panel/chat_panel.vue b/src/components/chat_panel/chat_panel.vue index 969088f4..46e011dc 100644 --- a/src/components/chat_panel/chat_panel.vue +++ b/src/components/chat_panel/chat_panel.vue @@ -1,5 +1,5 @@ <template> - <div class="chat-panel" v-if="this.collapsed"> + <div class="chat-panel" v-if="!this.collapsed"> <div class="panel panel-default"> <div class="panel-heading timeline-heading chat-heading" @click.stop.prevent="togglePanel"> <div class="title"> |
