This commit is contained in:
2020-08-05 22:33:33 +00:00
parent 6fddd981ed
commit 15297fa2f5
7 changed files with 21 additions and 7 deletions

View File

@@ -210,7 +210,9 @@ async function fetchTranslatedText(vm) {
async function populateSelectionLists(vm) {
let res = await window.$gz.api.get("log-file");
if (res.error) {
window.$gz.errorHandler.handleFormError(res.error, vm);
vm.formState.serverError = res.error;
window.$gz.form.setErrorBoxErrors(vm);
//window.$gz.errorHandler.handleFormError(res.error, vm);
} else {
vm.selectLists.serverLogs = res.data;
}