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,