Skip to content

Commit

Permalink
Fixed: Instead of displaying app version now display branch name and …
Browse files Browse the repository at this point in the history
…if not then tag name(#2dewerv)
  • Loading branch information
shashwatbangar committed Jan 10, 2023
1 parent 628260c commit e3c951f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export default defineComponent({
})
},
mounted() {
this.appVersion = this.appInfo.version;
this.appVersion = this.appInfo.branch ? (this.appInfo.branch + "-" + this.appInfo.revision) : this.appInfo.tag;
},
methods: {
setEComStore(event: any) {
Expand Down

0 comments on commit e3c951f

Please sign in to comment.