This commit is contained in:
@@ -856,3 +856,5 @@ BUILD 129 CHANGES OF NOTE
|
|||||||
- case 3944 updated the docs
|
- case 3944 updated the docs
|
||||||
- case 3945 made change see case
|
- case 3945 made change see case
|
||||||
- Added vert scroll to menu when it's too tall for the display (workorder has the longest menu), was not scrollable and completely accessible before on short screen size
|
- Added vert scroll to menu when it's too tall for the display (workorder has the longest menu), was not scrollable and completely accessible before on short screen size
|
||||||
|
- Fixed issue with translation key rather than translated text showing sometimes in History form in log area as well as in Name of item at top
|
||||||
|
- Fixing issue with translation key rather than translated text showing in search
|
||||||
@@ -261,6 +261,9 @@ export default {
|
|||||||
let lastType = -1;
|
let lastType = -1;
|
||||||
for (let i = 0; i < res.data.searchResults.length; i++) {
|
for (let i = 0; i < res.data.searchResults.length; i++) {
|
||||||
let item = res.data.searchResults[i];
|
let item = res.data.searchResults[i];
|
||||||
|
item.name = await window.$gz.translation.translateStringWithMultipleKeysAsync(
|
||||||
|
item.name
|
||||||
|
);
|
||||||
if (item.type != lastType) {
|
if (item.type != lastType) {
|
||||||
//change of type, set subheader props
|
//change of type, set subheader props
|
||||||
//de-lodash
|
//de-lodash
|
||||||
@@ -363,7 +366,7 @@ async function fetchTranslatedText(vm) {
|
|||||||
//
|
//
|
||||||
//
|
//
|
||||||
async function populateSelectionLists(vm) {
|
async function populateSelectionLists(vm) {
|
||||||
let res = await window.$gz.api.get("enum-list/list/coreview");
|
let res = await window.$gz.api.get("enum-list/list/ayatype");
|
||||||
if (res.error) {
|
if (res.error) {
|
||||||
vm.formState.serverError = res.error;
|
vm.formState.serverError = res.error;
|
||||||
window.$gz.form.setErrorBoxErrors(vm);
|
window.$gz.form.setErrorBoxErrors(vm);
|
||||||
|
|||||||
Reference in New Issue
Block a user