diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index a5baf115..3192e358 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -87,6 +87,8 @@ TEST data + + todo: Administration - License - view - Erase all biz data (new route and command needed at back as currently it erases ops data as well I think) diff --git a/ayanova/src/api/gzdialog.js b/ayanova/src/api/gzdialog.js index 0aa2c896..9c266209 100644 --- a/ayanova/src/api/gzdialog.js +++ b/ayanova/src/api/gzdialog.js @@ -124,6 +124,6 @@ export default { noButtonText: window.$gz.translation.get("Cancel") }); } - + //new functions above here }; diff --git a/ayanova/src/main.js b/ayanova/src/main.js index 92e9d72b..2e60e8f5 100644 --- a/ayanova/src/main.js +++ b/ayanova/src/main.js @@ -47,6 +47,7 @@ import reportSelectorControl from "./components/report-selector-control.vue"; import reportViewerControl from "./components/report-viewer-control.vue"; import wikiControl from "./components/wiki-control.vue"; import attachmentControl from "./components/attachment-control.vue"; +import chartLineControl from "./components/chart-line-control.vue"; //************************************************************** //************************************************************** @@ -178,6 +179,7 @@ Vue.component("gz-report-selector", reportSelectorControl); Vue.component("gz-report-viewer", reportViewerControl); Vue.component("gz-wiki", wikiControl); Vue.component("gz-attachments", attachmentControl); +Vue.component("gz-chart-line", chartLineControl); //3rd party components Vue.use(VueCurrencyInput);