From 8becfef6c3a75c4718bbfe1d0b3939838c495a80 Mon Sep 17 00:00:00 2001 From: elweyn Date: Wed, 1 Dec 2021 09:37:56 +0100 Subject: [PATCH] Added submitObj to createPendignCreation mutation. --- admin/src/components/CreationFormular.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/admin/src/components/CreationFormular.vue b/admin/src/components/CreationFormular.vue index 47b6dee3f..40d5bcb8c 100644 --- a/admin/src/components/CreationFormular.vue +++ b/admin/src/components/CreationFormular.vue @@ -234,6 +234,14 @@ export default { // lösche alle Mitglieder aus der MehrfachSchöpfungsListe nach dem alle Mehrfachschpfungen zum bestätigen gesendet wurden. this.$emit('remove-all-bookmark') } else if (this.type === 'singleCreation') { + this.submitObj = { + email: this.item.email, + creationDate: this.radioSelected.long, + amount: Number(this.value), + memo: this.text, + moderator: Number(this.$store.state.moderator.id), + } + this.$apollo .mutate({ mutation: createPendingCreation,