From afbc68aa20d3d03fce5c1fefe2c477b6646ff399 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 19 Jan 2022 20:40:03 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 37 +------------------------------------ ayanova/src/store.js | 2 +- 2 files changed, 2 insertions(+), 37 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 5f09da6c..53751262 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -789,41 +789,6 @@ TODO: 1 BETA DOCS: - 1 todo: client error log uses epoch time stamps, would be better to use utc 8601 format instead or even better local time so can correlate with users when things happen in their local time zone -{ - "data": [ - { - "created": "2022-01-19T19:18:36.051299Z", - "statusText": "LT:ProcessingJob \"LT:Report id: \"63\" LT:WorkOrder (1803) LT:User AyaNova SuperUser - RenderReport\"", - "jobId": "9c302943-f573-4cad-a9a5-f3ffd521b264" - }, - { - "created": "2022-01-19T19:19:46.64487Z", - "statusText": "rendererror:timeout,1", - "jobId": "9c302943-f573-4cad-a9a5-f3ffd521b264" - } - ] -} - -{ - "data": [ - { - "created": "2022-01-19T19:26:17.535952Z", - "statusText": "LT:ProcessingJob \"LT:Report id: \"63\" LT:WorkOrder (1803) LT:User AyaNova SuperUser - RenderReport\"", - "jobId": "7b866d1d-58a3-438a-beeb-6a030613c0b7" - }, - { - "created": "2022-01-19T19:27:18.082458Z", - "statusText": "rendererror:timeout,1", - "jobId": "7b866d1d-58a3-438a-beeb-6a030613c0b7" - } - ] -} -"Vue error: \nJob failed\ninfo: event handler for \"menu-click\" (Promise/async)" - -Vue error: Error - Name:SyntaxError, Message:JSON.parse: unexpected character at line 1 column 1 of the JSON data filename: http://localhost:8080/app.5c05fef9e3087cf58202.hot-update.js -lineNumber: 256 info: event handler for "menu-click" (Promise/async) STACK: _callee2$@http://localhost:8080/app.5c05fef9e3087cf58202.hot-update.js:256:42 -tryCatch@http://localhost:8080/js/chunk-vendors.js:66529:40 invoke@http://localhost:8080/js/chunk-vendors.js:66760:30 -./node_modules/regenerator-runtime/runtime.js/defineIteratorMethods/log form? @@ -1389,6 +1354,6 @@ BUILD 8.0.0-beta.0.12 CHANGES OF NOTE - Reordered the login form sample users list to be in alphabetical order to match full name changes to roles from earlier - renamed "select lists" to "autocomplete lists" in docs and in UI (english), select lists now refer to selects that are not searchable, autocomplete is every searchable list for selectingan ayanova object - Added missing "View on map" menu option to work orders, pm and quote - +- Report render timeout showed stack trace instead of proper error message due to changes at the back end, fixed - TODO: 1 before this release handlebars utilities add to report edit functions https://handlebarsjs.com/api-reference/utilities.html \ No newline at end of file diff --git a/ayanova/src/store.js b/ayanova/src/store.js index 1da14fe7..9b3fc3fc 100644 --- a/ayanova/src/store.js +++ b/ayanova/src/store.js @@ -175,7 +175,7 @@ export default new Vuex.Store({ state.helpUrl = data; }, logItem(state, msg) { - msg = Date.now() + "|" + msg; + msg = new Date().toLocaleString("sv-SE") + "|" + msg; state.logArray.push(msg); if (state.logArray.length > MaxLogLength) { //remove beginning elements