fix: Use default from attribute if undefined (#3977)
This commit is contained in:
parent
04148b95a6
commit
9c7044c81b
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ export default {
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
fromMail() {
|
fromMail() {
|
||||||
const from = this.emailAttributes.from;
|
const from = this.emailAttributes.from || [];
|
||||||
return from.join(', ');
|
return from.join(', ');
|
||||||
},
|
},
|
||||||
toMails() {
|
toMails() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue