Skip to content
Snippets Groups Projects
Commit 6cf77551 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch '659-about-styling' into 'develop'

Fixed #659: styling inconsistency on about page when instance description was missing

Closes #659

See merge request funkwhale/funkwhale!542
parents d18b9933 ef0383a8
No related branches found
No related tags found
No related merge requests found
Fixed a styling inconsistency on about page when instance description was missing (#659)
......@@ -12,15 +12,18 @@
</div>
</section>
<section class="ui vertical stripe segment">
<p v-if="!instance.short_description.value && !instance.long_description.value">
<translate>Unfortunately, owners of this instance did not yet take the time to complete this page.</translate>
</p>
<router-link
class="ui button"
v-if="$store.state.auth.availablePermissions['settings']"
:to="{path: '/manage/settings', hash: 'instance'}">
<i class="pencil icon"></i><translate>Edit instance info</translate>
</router-link>
<div
class="ui middle aligned stackable text container">
<p
v-if="!instance.short_description.value && !instance.long_description.value"><translate>Unfortunately, owners of this instance did not yet take the time to complete this page.</translate></p>
<router-link
class="ui button"
v-if="$store.state.auth.availablePermissions['settings']"
:to="{path: '/manage/settings', hash: 'instance'}">
<i class="pencil icon"></i><translate>Edit instance info</translate>
</router-link>
<div class="ui hidden divider"></div>
</div>
<div
v-if="instance.short_description.value"
class="ui middle aligned stackable text container">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment