123456789101112131415161718192021222324 |
- import { extractCommit } from 'src/services/version/version.service'
- const pleromaFeCommitUrl = 'https://git.pleroma.social/pleroma/pleroma-fe/commit/'
- const pleromaBeCommitUrl = 'https://git.pleroma.social/pleroma/pleroma/commit/'
- const VersionTab = {
- data () {
- const instance = this.$store.state.instance
- return {
- backendVersion: instance.backendVersion,
- frontendVersion: instance.frontendVersion
- }
- },
- computed: {
- frontendVersionLink () {
- return pleromaFeCommitUrl + this.frontendVersion
- },
- backendVersionLink () {
- return pleromaBeCommitUrl + extractCommit(this.backendVersion)
- }
- }
- }
- export default VersionTab
|