From 933275c36702dd143b24eb7466be0f10d7eeeefc Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Mon, 10 Jan 2022 13:03:05 +0100 Subject: [PATCH] .global.error to .error as global is not defined so far --- 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 09e1fa92a..d3ffc3e29 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.message) + this.$toasted.error(error.message) }) }, },