diff options
| author | Henry Jameson <me@hjkos.com> | 2021-06-10 13:01:00 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2021-06-10 13:01:00 +0300 |
| commit | 394fd462dc48654ba7743bb9c2ac378f98f75bd4 (patch) | |
| tree | cd358e449360f170ac212be4bf0fbb12149964da /src/components/status/status.vue | |
| parent | c6c478f4cf123d9510e1e67a852cad0398d08052 (diff) | |
proper cachin of headTailLinks, show mentions in notificaitons always
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 62ad0eac..e4c3a755 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -267,8 +267,8 @@ :first-mention="false" /> <span - v-if="isReply && hasMentions" - class="faint replies-separator" + v-if="isReply && hasMentionsLine" + class="faint mentions-separator" > - </span> @@ -276,7 +276,7 @@ v-if="hasMentionsLine" > <span - class="button-unstyled reply-to" + class="button-unstyled mentions" :aria-label="$t('tool_tip.reply')" @click.prevent="gotoOriginal(status.in_reply_to_status_id)" > @@ -285,7 +285,7 @@ icon="at" /> <span - class="faint-link reply-to-text" + class="faint-link mentions-text" > {{ $t('status.mentions') }} </span> @@ -304,6 +304,8 @@ :no-heading="noHeading" :highlight="highlight" :focused="isFocused" + :hide-first-mentions="mentionsOwnLine" + :head-tail-links="headTailLinks" @mediaplay="addMediaPlaying($event)" @mediapause="removeMediaPlaying($event)" /> |
