Skip to content

Commit

Permalink
Merge pull request #649 from joeirimpan/fix/msgr-persist
Browse files Browse the repository at this point in the history
fix(frontend): Persist messenger selection
  • Loading branch information
knadh committed Jan 5, 2022
2 parents e200ab0 + 4c48c32 commit b0787f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/views/Campaign.vue
Original file line number Diff line number Diff line change
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 b0787f7

Please sign in to comment.