This commit is contained in:
2020-06-20 14:21:59 +00:00
parent 639916fbfa
commit 79a476cb49
8 changed files with 23 additions and 29 deletions

View File

@@ -258,7 +258,7 @@ export default {
vm.fetching = false;
//We never expect there to be no data here
if (!res.data) {
if (!res.hasOwnProperty("data")) {
throw res;
}
vm.searchResults = res.data;