Put spaces between joined members in group updates
This commit is contained in:
parent
d435ff003b
commit
0f29cf2043
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@
|
|||
messages.push("Title is now '" + this.model.name + "'.");
|
||||
}
|
||||
if (this.model.joined) {
|
||||
messages.push(this.model.joined + ' joined the group');
|
||||
messages.push(this.model.joined.join(', ') + ' joined the group');
|
||||
}
|
||||
|
||||
this.$el.text(messages.join(' '));
|
||||
|
|
Loading…
Reference in a new issue