From df26b6443ba95cc397f07e29268c73d4da161240 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 31 Jan 2019 20:48:40 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 2 ++ ayanova/src/api/aboutinfo.js | 4 ++-- ayanova/src/components/inventorywidgetlist.vue | 8 ++++---- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 8be3f821..a4174a87 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -47,6 +47,8 @@ TODO CLIENT STUFF - https://rockfish.ayanova.com/default.htm#!/rfcaseEdit/3494 - UI:GENERAL:LAYOUT: - All layout, not just workorder needs to be modular and optional sections with simple starting view. + - MISC + - Search area seems to take up too much space - SERVER CHANGE USEROPTIONS SETTINGS NEEDED: - Best to do this useroptions stuff after a form is in place that I can play with at the client and experiment to see what is possible diff --git a/ayanova/src/api/aboutinfo.js b/ayanova/src/api/aboutinfo.js index 282d0109..c8979570 100644 --- a/ayanova/src/api/aboutinfo.js +++ b/ayanova/src/api/aboutinfo.js @@ -1,5 +1,5 @@ export default { - version: "8.0.0-alpha.1", + version: "8.0.0-alpha.2", copyright: - "Copyright © 1999-2018, Ground Zero Tech-Works Inc. All Rights Reserved" + "Copyright © 1999-2019, Ground Zero Tech-Works Inc. All Rights Reserved" }; diff --git a/ayanova/src/components/inventorywidgetlist.vue b/ayanova/src/components/inventorywidgetlist.vue index 3519e576..be60a529 100644 --- a/ayanova/src/components/inventorywidgetlist.vue +++ b/ayanova/src/components/inventorywidgetlist.vue @@ -60,10 +60,10 @@ export default { ltKeysRequired: [ "Widget", "WidgetList", - "CommonName", + "WidgetName", "WidgetSerial", "WidgetDollarAmount", - "CommonActive", + "Active", "WidgetRoles", "WidgetStartDate", "WidgetEndDate", @@ -88,12 +88,12 @@ export default { rowsPerPageText: "blah per blah", headers: [ { - text: this.lt("CommonName"), + text: this.lt("WidgetName"), value: "name" }, { text: this.lt("WidgetSerial"), value: "serial" }, { text: this.lt("WidgetDollarAmount"), value: "dollarAmount" }, - { text: this.lt("CommonActive"), value: "active" }, + { text: this.lt("Active"), value: "active" }, { text: this.lt("WidgetRoles"), value: "roles" }, { text: this.lt("WidgetStartDate"), value: "startDate" }, { text: this.lt("WidgetEndDate"), value: "endDate" }