diff options
| author | Roger Braun <roger@rogerbraun.net> | 2017-04-09 16:39:19 +0200 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2017-04-09 16:39:19 +0200 |
| commit | 1ea19dcf1d7548496b4078aee90cb3e4bbad7755 (patch) | |
| tree | efdb13c69dbc6db91ef1fcbf964aeff392623a30 /src | |
| parent | e531c780798b84215160cf44a2f0aed971c6cf97 (diff) | |
Take unmuting out of expandable condition.
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 642f1143..b471888a 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -53,10 +53,10 @@ <small> <a href="#" @click.prevent="toggleExpanded" ><i class="icon-plus-squared"></i></a> </small> - <small v-if="unmuted"> - <a href="#" @click.prevent="toggleMute" ><i class="icon-eye-off"></i></a> - </small> </template> + <small v-if="unmuted"> + <a href="#" @click.prevent="toggleMute" ><i class="icon-eye-off"></i></a> + </small> <small v-if="!status.is_local" class="source_url"> <a :href="status.external_url" target="_blank" ><i class="icon-binoculars"></i></a> </small> |
