diff --git a/src/views/Settings.vue b/src/views/Settings.vue
index 0086bad1..dcb850f0 100644
--- a/src/views/Settings.vue
+++ b/src/views/Settings.vue
@@ -56,10 +56,10 @@
@@ -153,7 +153,7 @@ export default defineComponent({
sampleDateTime: '',
dateTimeFormat: '',
defaultDateTimeFormat: process.env.VUE_APP_DATE_FORMAT ? process.env.VUE_APP_DATE_FORMAT : 'MM/dd/yyyy',
- appInfo: (process.env.VUE_APP_VERSION_INFO ? JSON.parse(process.env.VUE_APP_VERSION_INFO) : {}) as any,
+ // appInfo: (process.env.VUE_APP_VERSION_INFO ? JSON.parse(process.env.VUE_APP_VERSION_INFO) : {}) as any,
appVersion: ""
};
},
@@ -168,7 +168,7 @@ export default defineComponent({
mounted(){
this.dateTimeFormat = this.currentDateTimeFormat
this.parse();
- this.appVersion = this.appInfo.branch ? (this.appInfo.branch + "-" + this.appInfo.revision) : this.appInfo.tag;
+ // this.appVersion = this.appInfo.branch ? (this.appInfo.branch + "-" + this.appInfo.revision) : this.appInfo.tag;
},
methods: {
goToOms(){