Skip to content

Commit

Permalink
fix(frontend): Persist messenger selection
Browse files Browse the repository at this point in the history
  • Loading branch information
joeirimpan committed Jan 5, 2022
1 parent e200ab0 commit 4c48c32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/views/Campaign.vue
Expand Up @@ -233,6 +233,7 @@ export default Vue.extend({
fromEmail: '',
headersStr: '[]',
headers: [],
messenger: 'email',
templateId: 0,
lists: [],
tags: [],
Expand Down Expand Up @@ -341,7 +342,7 @@ export default Vue.extend({
lists: this.form.lists.map((l) => l.id),
from_email: this.form.fromEmail,
content_type: 'richtext',
messenger: 'email',
messenger: this.form.messenger,
type: 'regular',
tags: this.form.tags,
send_later: this.form.sendLater,
Expand Down

0 comments on commit 4c48c32

Please sign in to comment.