From 75263989911f4070a254ec66894812207c2ffc4e Mon Sep 17 00:00:00 2001 From: elweyn Date: Wed, 22 Dec 2021 09:16:31 +0100 Subject: [PATCH] Toast should only send the error message. --- admin/src/components/CreationTransactionListFormular.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/src/components/CreationTransactionListFormular.vue b/admin/src/components/CreationTransactionListFormular.vue index bccd6ce7e..04f1c9a13 100644 --- a/admin/src/components/CreationTransactionListFormular.vue +++ b/admin/src/components/CreationTransactionListFormular.vue @@ -33,7 +33,7 @@ export default { this.items = result.data.transactionList.transactions }) .catch((error) => { - this.$toasted.global.error('Error while searching the creations', error) + this.$toasted.global.error(error.message) }) }, },