Skip to content

Commit

Permalink
Fix loading of messengers from serverConfig on line 629 (#2187)
Browse files Browse the repository at this point in the history
  • Loading branch information
centja1 authored Dec 3, 2024
1 parent 3f5bad1 commit cb99d60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/Campaign.vue
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ export default Vue.extend({
},
messengers() {
return ['email', ...this.serverConfig.messengers.map((m) => m.name)];
return [...this.serverConfig.messengers];
},
},
Expand Down

0 comments on commit cb99d60

Please sign in to comment.