Show bubble instances in about panel (#123)

Reviewed-on: https://akkoma.dev/AkkomaGang/pleroma-fe/pulls/123
This commit is contained in:
floatingghost 2022-08-09 02:16:23 +00:00
parent d4f8934e8a
commit 4d27064db3
7 changed files with 71 additions and 1 deletions

View file

@ -0,0 +1,12 @@
import { mapState } from 'vuex'
import { get } from 'lodash'
const LocalBubblePanel = {
computed: {
...mapState({
bubbleInstances: state => get(state, 'instance.localBubbleInstances')
})
}
}
export default LocalBubblePanel