Skip to content

Commit

Permalink
Updated: Test changes hotwax#3 (#85zrhdgkh)
Browse files Browse the repository at this point in the history
  • Loading branch information
k2maan committed Feb 1, 2023
1 parent fa9f72a commit 4b222c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@
<div class="section-header">
<h1>
{{ $t('App') }}
<p class="overline" >{{ "Version: " + appVersion }}</p>
<!-- <p class="overline" >{{ "Version: " + appVersion }}</p> -->
</h1>
<div class="ion-text-end">
<p class="overline">{{ "Built: " + getDateTime(appInfo.builtTime) }}</p>
<!-- <p class="overline">{{ "Built: " + getDateTime(appInfo.builtTime) }}</p> -->
<ion-button @click="refreshApp()" fill="outline" color="dark" size="small">{{ $t("Update") }}</ion-button>
</div>
</div>
Expand Down Expand Up @@ -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: ""
};
},
Expand All @@ -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(){
Expand Down

0 comments on commit 4b222c6

Please sign in to comment.