This commit is contained in:
@@ -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/</<@http://localhost:8080/js/chunk-vendors.js:66585:21 asyncGeneratorStep
|
||||
|
||||
- 2 todo: put reset link somewhere in UI so user can just click on it, maybe the login form?? Or the About form? about->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
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user