This commit is contained in:
2021-02-06 00:40:39 +00:00
parent 4df81f485d
commit ad38e07629
3 changed files with 12 additions and 6 deletions

View File

@@ -313,7 +313,7 @@ function generateMenu(vm) {
//
async function initForm(vm) {
await fetchTranslatedText(vm);
await populateSelectionLists(vm);
populateSelectionLists(vm);
await ensureTemplateIsInStore(vm);
await initDataObject(vm);
}

View File

@@ -430,6 +430,7 @@ function initWorkingView(vm) {
if (fld.isRowId) {
o.rid = true;
}
ret.push(o);
}
@@ -449,7 +450,7 @@ function initWorkingView(vm) {
o.rid = true;
o.include = true;
}
ret.push(o);
}
}