Skip to content

Commit

Permalink
fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegZharkov committed Nov 26, 2021
1 parent d1cfec0 commit 1caa2b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/HistoryView.vue
Expand Up @@ -70,7 +70,7 @@ export default {
axios
.get(url)
.then((response) => this.updateHistoryView(response))
.catch((error) => this.errorMessages.push(error));
.catch((error) => this.errorMessages.push(error.response.data.err_msg));
},
updateHistoryView: function (response) {
this.historyData = response.data;
Expand Down

0 comments on commit 1caa2b9

Please sign in to comment.