further separation of tabs
This commit is contained in:
parent
b0f725671a
commit
50ede338e7
30 changed files with 1489 additions and 1100 deletions
19
src/components/settings_modal/tabs/developer_tab.js
Normal file
19
src/components/settings_modal/tabs/developer_tab.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
const pleromaFeCommitUrl = 'https://git.pleroma.social/pleroma/pleroma-fe/commit/'
|
||||
|
||||
const VersionTab = {
|
||||
data () {
|
||||
const instance = this.$store.state.instance
|
||||
return {
|
||||
backendVersion: instance.backendVersion,
|
||||
backendRepository: instance.backendRepository,
|
||||
frontendVersion: instance.frontendVersion
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
frontendVersionLink () {
|
||||
return pleromaFeCommitUrl + this.frontendVersion
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default VersionTab
|
||||
Loading…
Add table
Add a link
Reference in a new issue