This commit is contained in:
2021-02-10 15:25:29 +00:00
parent 7b4dad2a1c
commit 6198714184
2 changed files with 3 additions and 8 deletions

View File

@@ -10,13 +10,6 @@ MISC ITEMS THAT CAME UP
## CLIENT MISC ITEMS
todo: help docs and urls sb standardized and shortened / simplified
for example remove "form-" from names of help files so "form-inv-part-assemblies" becomes "inv-part-assemblies"
make sure all forms have corresponding help doc by searching for "helpUrl:" and then comparing list
todo: select list templates in admin global settings doesn't show the list of objects in alpha order (look at notification maybe there or maybe needs it too)
also, needs a way to reset to default with one click, maybe a menu option?
todo: customer popup notes need to pop pop pop, forgot to code for that before
It's been requested for a couple of other places as well so I need a re-usable solution for this
maybe it requires dismissal rather than what I was thinking of which is a self closing alert as people may want to read it for a while.

View File

@@ -10,7 +10,7 @@
aria-hidden="true"
></button>
<v-row>
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
<v-col cols="12">
<v-select
v-model="templateId"
@@ -458,7 +458,9 @@ async function populateSelectionLists(vm) {
vm.formState.serverError = res.error;
window.$gz.form.setErrorBoxErrors(vm);
} else {
res.data.sort(window.$gz.util.sortByKey("name"));
vm.selectLists.pickListTemplates = res.data;
window.$gz.form.addNoSelectionItem(vm.selectLists.pickListTemplates);
}
}