This commit is contained in:
2020-05-26 15:22:56 +00:00
parent 2286e66a05
commit 95838b9484
3 changed files with 5 additions and 1 deletions

View File

@@ -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)

View File

@@ -124,6 +124,6 @@ export default {
noButtonText: window.$gz.translation.get("Cancel")
});
}
//new functions above here
};

View File

@@ -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);