# HG changeset patch # User Thomas Junk # Date 1559044038 -7200 # Node ID e2ed741545e13d61169e4040eec5921e47eea89b # Parent d136ceed5d41f0287ab200d5cbf554823b46c2e9 import_overview: added country column diff -r d136ceed5d41 -r e2ed741545e1 client/src/components/importoverview/ImportOverview.vue --- a/client/src/components/importoverview/ImportOverview.vue Tue May 28 12:44:13 2019 +0200 +++ b/client/src/components/importoverview/ImportOverview.vue Tue May 28 13:47:18 2019 +0200 @@ -74,11 +74,12 @@ { + const { status, data } = error.response; + displayError({ + title: this.$gettext("Backend Error"), + message: `${status}: ${data.message || data}` + }); + }); const { id } = this.$route.params; if (id) { this.showSingleRessource(id); diff -r d136ceed5d41 -r e2ed741545e1 client/src/components/importoverview/LogEntry.vue --- a/client/src/components/importoverview/LogEntry.vue Tue May 28 12:44:13 2019 +0200 +++ b/client/src/components/importoverview/LogEntry.vue Tue May 28 13:47:18 2019 +0200 @@ -1,6 +1,6 @@