This commit is contained in:
2020-11-26 19:46:52 +00:00
parent f26579103e
commit 649e817086
10 changed files with 75 additions and 33 deletions

View File

@@ -271,7 +271,8 @@ export default {
vm.fetching = false;
//We never expect there to be no data here
if (!res.hasOwnProperty("data")) {
throw new Error(res);
//throw new Error(res);
return Promise.reject(res);
}
vm.searchResults = res.data;
window.$gz.form.addNoSelectionItem(vm.searchResults, true);