logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

version_tab.js (474B)


  1. const pleromaFeCommitUrl = 'https://git.pleroma.social/pleroma/pleroma-fe/commit/'
  2. const VersionTab = {
  3. data () {
  4. const instance = this.$store.state.instance
  5. return {
  6. backendVersion: instance.backendVersion,
  7. backendRepository: instance.backendRepository,
  8. frontendVersion: instance.frontendVersion
  9. }
  10. },
  11. computed: {
  12. frontendVersionLink () {
  13. return pleromaFeCommitUrl + this.frontendVersion
  14. }
  15. }
  16. }
  17. export default VersionTab