aboutsummaryrefslogtreecommitdiff
path: root/src/components/conversation/conversation.vue
diff options
context:
space:
mode:
authorShpuld Shpuldson <shp@cock.li>2020-12-02 12:48:21 +0200
committerShpuld Shpuldson <shp@cock.li>2020-12-02 12:48:21 +0200
commitb537032e6d07828db6fc016c1413970c436e19ad (patch)
treec6d89bdbcf112678dc63236653a6aea426eacf80 /src/components/conversation/conversation.vue
parent4dde9c4d529fb94b23b394aaa91e6a7cafd75777 (diff)
parentfdfb8810c1d8ab64969c38aa1a6bce1daf013249 (diff)
Merge branch 'develop' into fix/fix-error-handling-in-profile-tab
Diffstat (limited to 'src/components/conversation/conversation.vue')
-rw-r--r--src/components/conversation/conversation.vue13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue
index fd0dfa8f..353859b8 100644
--- a/src/components/conversation/conversation.vue
+++ b/src/components/conversation/conversation.vue
@@ -10,12 +10,13 @@
class="panel-heading conversation-heading"
>
<span class="title"> {{ $t('timeline.conversation') }} </span>
- <span v-if="collapsable">
- <a
- href="#"
- @click.prevent="toggleExpanded"
- >{{ $t('timeline.collapse') }}</a>
- </span>
+ <button
+ v-if="collapsable"
+ class="button-unstyled -link"
+ @click.prevent="toggleExpanded"
+ >
+ {{ $t('timeline.collapse') }}
+ </button>
</div>
<status
v-for="status in conversation"