diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index ee6cb3bc..605babca 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -9,10 +9,8 @@ MISC ITEMS THAT CAME UP ## CLIENT MISC ITEMS +todo: deploy latest build to server -todo: clicking into a decimal field and then clicking out causes the record to be dirty - see tax-code or widget for example - todo: standardize routes and route names and form names Use plural and singular names throughout for consistency i.e. "-edit" forms shoudl be standardized to just th singular name so "part-assembly-edit" sb "part-assembly" diff --git a/ayanova/src/components/currency-control.vue b/ayanova/src/components/currency-control.vue index bf6ac81a..a8703e79 100644 --- a/ayanova/src/components/currency-control.vue +++ b/ayanova/src/components/currency-control.vue @@ -50,8 +50,9 @@ export default { currency: this.currencyName, locale: this.languageName }); - - this.$emit("input", parsedValue); + if (parsedValue != this.value) { + this.$emit("input", parsedValue); + } } } }; diff --git a/ayanova/src/main.js b/ayanova/src/main.js index 3c8cc741..d3918dd0 100644 --- a/ayanova/src/main.js +++ b/ayanova/src/main.js @@ -66,7 +66,7 @@ import chartBarHorizontalControl from "./components/chart-bar-horizontal-control //DEVELOPMENT MODE //THIS SHOULD BE FALSE IN RELEASE //************************************************************ -const DEV_MODE = true; +const DEV_MODE = false; //************************************************************ //************************************************************** //************************************************************** diff --git a/ayanova/src/views/widget.vue b/ayanova/src/views/widget.vue index 2e633f88..519cd90c 100644 --- a/ayanova/src/views/widget.vue +++ b/ayanova/src/views/widget.vue @@ -1,7 +1,7 @@