Fix observations CR in FE

This commit is contained in:
Henry Jordan
2021-09-06 20:07:48 +00:00
parent 11183e2231
commit aab8827b6e
12 changed files with 148 additions and 27 deletions

View File

@@ -24,8 +24,8 @@ export default {
.then((data) => {
that.data = data.data;
})
.catch(() => {
.catch((e) => {
console.error(e);
});
},
/**
@@ -43,8 +43,8 @@ export default {
that.loadMore = that.$t("ID_NO_MORE_INFORMATION");
}
})
.catch(() => {
.catch((e) => {
console.error(e);
});
},
/**