From ca9f2f611728a68b5d9a3cfa92d93ce799a68be6 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 7 Sep 2021 20:28:50 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 2 ++ ayanova/src/views/ops-view-configuration.vue | 19 +++++++++---------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index a7304130..e3dda96b 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -768,4 +768,6 @@ BUILD 129 CHANGES OF NOTE - Report templates now allow the same name as long as the type is different so you can have a "MyReport" named report for a Customer and a "MyReport" named report for anything else but no two of the same type can have the same name this is to allow for very similar reports on differing objects so users know what to expect so you don't need to give a special name to a Quote or WO or PM version of the same report - Ops "Server configuration" page changed to redact password from db connection string sent to Client from server (like the log already does) +- Boot log when in debug mode added server environment data for troubleshooting purposes +- Ops server config page added server environment data at bottom for tech support purposes diff --git a/ayanova/src/views/ops-view-configuration.vue b/ayanova/src/views/ops-view-configuration.vue index 0e4bfa9c..94b2e976 100644 --- a/ayanova/src/views/ops-view-configuration.vue +++ b/ayanova/src/views/ops-view-configuration.vue @@ -99,7 +99,7 @@ - {{ $ay.t("Server") }} + Environment
{{ name }}: {{ value }} @@ -137,7 +137,6 @@ export default { async created() { let vm = this; try { - await initForm(this); vm.formState.ready = true; window.$gz.eventBus.$on("menu-click", clickHandler); generateMenu(vm); @@ -235,16 +234,16 @@ function clickHandler(menuItem) { // // async function initForm(vm) { - await fetchTranslatedText(vm); + //await fetchTranslatedText(vm); } -////////////////////////////////////////////////////////// -// -// Ensures UI translated text is available -// -async function fetchTranslatedText(vm) { - await window.$gz.translation.cacheTranslations(["Server"]); -} +// ////////////////////////////////////////////////////////// +// // +// // Ensures UI translated text is available +// // +// async function fetchTranslatedText(vm) { +// await window.$gz.translation.cacheTranslations(["ViewServerConfiguration"]); +// } /* AYANOVA_DEFAULT_TRANSLATION = ServerBootConfig.AYANOVA_DEFAULT_TRANSLATION,