From 49370f804eab197140714a98e750cf2f736c17a1 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 12 Dec 2019 00:43:42 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 2 +- ayanova/src/components/inventorywidgetlist.vue | 2 +- ayanova/src/main.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index e43be257..cdcc95b8 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -49,7 +49,7 @@ CURRENT TODOs TODO: MAIN GRID LIST ANALYSIS, DESIGN AND COMPLETION - - Main grid time is off from edit form time by -1 hour + - Should users be able to set columns or am I really going to force it to a preset? - I had a customer today request the Description field from unit show in the workorder service grid, it doesn't do that - Customers probably want the option of picking what fields show and what don't diff --git a/ayanova/src/components/inventorywidgetlist.vue b/ayanova/src/components/inventorywidgetlist.vue index 19914883..2cddda1f 100644 --- a/ayanova/src/components/inventorywidgetlist.vue +++ b/ayanova/src/components/inventorywidgetlist.vue @@ -59,7 +59,7 @@ > - {{ props.item.name | capitalize }} + {{ props.item.name }} {{ props.item.serial }} diff --git a/ayanova/src/main.js b/ayanova/src/main.js index 7810bd27..af8de236 100644 --- a/ayanova/src/main.js +++ b/ayanova/src/main.js @@ -156,7 +156,7 @@ Vue.filter("shortdatelocalized", function vueFilterShortDateLocalized(value) { Vue.filter("currency", function vueFilterCurrency(value) { if (!value) return ""; - return "$" + value; + return locale.format().currencySymbol + value; }); Vue.filter("boolastext", function vueFilterBoolAsText(value) {