logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: b515586485fab7030e02cad3cf1ce2c6e451c7d9
parent: 5986afbb201e2a42bd0954c35e284c932b2e993c
Author: Roger Braun <roger@rogerbraun.net>
Date:   Fri, 25 Nov 2016 17:34:41 +0100

Show link to status source url.

Diffstat:

Msrc/components/status/status.vue7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/components/status/status.vue b/src/components/status/status.vue @@ -25,6 +25,9 @@ {{status.created_at_parsed}} </router-link> </small> + <small v-if="!status.is_local" class="source_url"> + <a :href="status.external_url" >Source</a> + </small> </h4> <div class="status-content" v-html="status.statusnet_html"></div> @@ -62,6 +65,10 @@ word-wrap: break-word; word-break: break-word; + .source_url { + float: right; + } + a { display: inline-block; word-break: break-all;