Fixed #659: styling inconsistency on about page when instance description was missing
This commit is contained in:
parent
f7986a2341
commit
ef0383a84a
|
@ -0,0 +1 @@
|
||||||
|
Fixed a styling inconsistency on about page when instance description was missing (#659)
|
|
@ -12,15 +12,18 @@
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section class="ui vertical stripe segment">
|
<section class="ui vertical stripe segment">
|
||||||
<p v-if="!instance.short_description.value && !instance.long_description.value">
|
<div
|
||||||
<translate>Unfortunately, owners of this instance did not yet take the time to complete this page.</translate>
|
class="ui middle aligned stackable text container">
|
||||||
</p>
|
<p
|
||||||
<router-link
|
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>
|
||||||
class="ui button"
|
<router-link
|
||||||
v-if="$store.state.auth.availablePermissions['settings']"
|
class="ui button"
|
||||||
:to="{path: '/manage/settings', hash: 'instance'}">
|
v-if="$store.state.auth.availablePermissions['settings']"
|
||||||
<i class="pencil icon"></i><translate>Edit instance info</translate>
|
:to="{path: '/manage/settings', hash: 'instance'}">
|
||||||
</router-link>
|
<i class="pencil icon"></i><translate>Edit instance info</translate>
|
||||||
|
</router-link>
|
||||||
|
<div class="ui hidden divider"></div>
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
v-if="instance.short_description.value"
|
v-if="instance.short_description.value"
|
||||||
class="ui middle aligned stackable text container">
|
class="ui middle aligned stackable text container">
|
||||||
|
|
Loading…
Reference in New Issue