mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 07:09:24 +02:00
Fixed #82: Basic instance states are now available on /about
This commit is contained in:
parent
c89212379d
commit
d875f0d070
7 changed files with 259 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
<template v-if="instance.name.value">About {{ instance.name.value }}</template>
|
||||
<template v-else="instance.name.value">About this instance</template>
|
||||
</h1>
|
||||
<stats></stats>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui vertical stripe segment">
|
||||
|
@ -27,8 +28,12 @@
|
|||
|
||||
<script>
|
||||
import {mapState} from 'vuex'
|
||||
import Stats from '@/components/instance/Stats'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Stats
|
||||
},
|
||||
created () {
|
||||
this.$store.dispatch('instance/fetchSettings')
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue