diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 8273e914..6096e928 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -269,10 +269,12 @@ TODO: 1 BETA DOCS: - 1 todo: Search limited to a type is *not* working, it just returns all results, search from a Customer for example and you will see all object results -- 1 todo: wiki control needs to be able to show validation errors when minimized so when it's a required field it can show if empty +- 1 todo: - 1 todo: time control in native browser format isn't showing a title at all, check date as well. Date and time is ok - 1 todo: help about does it show user has native date time input use browser override? + +- 2: reset to defaults button for form customize would be handy, especially on work order forms. - 2: history form now shows user activity for a report which is ok but it shows like this: "LT:Report id: "2" LT:Customer (1082) LT:User AyaNova SuperUser" This is coming from the job log when the render job is submitted. not sure if this is good or bad or should be there but at least it should be translated diff --git a/ayanova/src/api/translation.js b/ayanova/src/api/translation.js index 519acb33..c1d869e3 100644 --- a/ayanova/src/api/translation.js +++ b/ayanova/src/api/translation.js @@ -287,7 +287,8 @@ export default { "Now", "DateRangeToday", "ReportRenderTimeOut", - "RenderingReport" + "RenderingReport", + "AllFieldsHidden" ], //////////////////////////////////////////////////////// diff --git a/ayanova/src/components/work-order-item-scheduled-users.vue b/ayanova/src/components/work-order-item-scheduled-users.vue index bc2c807b..beefe67c 100644 --- a/ayanova/src/components/work-order-item-scheduled-users.vue +++ b/ayanova/src/components/work-order-item-scheduled-users.vue @@ -393,6 +393,13 @@ export default { }); } + if (headers.length == 0) { + headers.push({ + text: this.$ay.t("AllFieldsHidden"), + align: "left", + value: "xxxx" + }); + } return headers; }, itemList: function() {