if no recipientEmail else form.email

This commit is contained in:
ogerly 2022-04-03 09:48:21 +02:00
parent 2f0da9a97a
commit f01f28cc82

View File

@ -213,7 +213,7 @@ export default {
},
},
created() {
this.form.email = this.recipientEmail ? this.recipientEmail : ''
this.form.email = this.recipientEmail ? this.recipientEmail : this.form.email
},
}
</script>