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 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 TODO: Enforce role rights for menu items once it's stubbed out

View File

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

View File

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

View File

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