This commit is contained in:
2019-12-31 19:05:16 +00:00
parent 3b2f569235
commit 5aba285487
4 changed files with 11 additions and 9 deletions

View File

@@ -47,7 +47,9 @@ CURRENT TODOs
SHELL / NAV / MENUS / LAYOUT
TODO: WHEN GET TO HERE, POST TO SERVER AND TEST DRIVE AGAIN WITH ALL BROWSERS / DEVICES
TODO: Upgrade front and back end libs / tools / frameworks
- is .net 3.1 released yet? Jesus! :)
- Vue / vuetify etc
TODO: Enforce role rights for menu items once it's stubbed out

View File

@@ -215,7 +215,7 @@
<script>
/* Xeslint-disable */
import aboutInfo from "./api/aboutinfo";
import ayaNovaVersion from "./api/ayanova-version";
import gzconfirm from "./components/gzconfirm";
import gznotify from "./components/gznotify";
//import gztest from "./components/gztest";
@@ -278,10 +278,10 @@ export default {
return this.$store.state.navItems;
},
copyright() {
return aboutInfo.copyright;
return ayaNovaVersion.copyright;
},
version() {
return aboutInfo.version;
return ayaNovaVersion.version;
},
helpUrl() {
return this.$store.state.helpUrl;

View File

@@ -1,5 +1,5 @@
export default {
version: "8.0.0-alpha.2019.Dec.27",
version: "8.0.0-alpha.2019.Dec.31",
copyright:
"Copyright © 1999-2019, Ground Zero Tech-Works Inc. All Rights Reserved",
browser: {

View File

@@ -13,7 +13,7 @@
>
</v-col>
<v-col>
<v-card id="aboutinfocard">
<v-card id="ayaNovaVersioncard">
<v-subheader>{{ lt("ClientApp") }}</v-subheader>
<div>
<span class="ml-6 body-1">{{ lt("Version") }}:</span>
@@ -134,7 +134,7 @@
<script>
/* xeslint-disable */
import aboutInfo from "../api/aboutinfo";
import ayaNovaVersion from "../api/ayanova-version";
/////////////////////////////
//
@@ -148,7 +148,7 @@ function clickHandler(menuItem) {
switch (m.key) {
case "copysupportinfo":
//put the support info on the clipboard:
var element = document.getElementById("aboutinfocard");
var element = document.getElementById("ayaNovaVersioncard");
var text = element.innerText || element.textContent;
var logText = "";
@@ -243,7 +243,7 @@ export default {
beforeDestroy() {},
mounted() {
this.clientInfo = {};
this.clientInfo = aboutInfo;
this.clientInfo = ayaNovaVersion;
},
data() {
return {