diff options
| author | shpuld <shpuld@gmail.com> | 2017-03-06 14:51:01 +0200 |
|---|---|---|
| committer | shpuld <shpuld@gmail.com> | 2017-03-06 14:51:01 +0200 |
| commit | 31c0a2dfef565bc665ebe6c4d8102249eefc6869 (patch) | |
| tree | 6f24d32bf47634aa9f4d81c6041e18dd39fe1f3c /src/components/status/status.vue | |
| parent | e19bfb9a22f1db562de7079b71dee6e53a8a54fb (diff) | |
| parent | 67c22276d3049576bebeaf4d22e937d759cba06d (diff) | |
Merge branch 'develop' of ssh.gitgud.io:lambadalambda/pleroma-fe into feature/load-new-statuses-in-heading
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 585bf621..6476e1e5 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -1,5 +1,5 @@ <template> - <div class="status-el base00-background" v-if="!status.deleted" v-bind:class="{ 'expanded-status': !expandable }"> + <div class="status-el base00-background" v-if="!status.deleted" v-bind:class="[{ 'expanded-status': !expandable }, { 'base01-background': focused }]"> <template v-if="muted"> <div class="media status container muted"> <small><router-link :to="{ name: 'user-profile', params: { id: status.user.id } }">{{status.user.screen_name}}</router-link></small> @@ -34,6 +34,13 @@ {{status.in_reply_to_screen_name}} </router-link> </small> + <template v-if="isReply"> + <small> + <router-link :to="{ name: 'conversation', params: { id: status.in_reply_to_status_id } }"> + <i class="icon-reply"></i> + </router-link> + </small> + </template> - <small> <router-link :to="{ name: 'conversation', params: { id: status.id } }"> |
