Tests coming in another PR
This commit is contained in:
parent
93c33e02f0
commit
cb1e95cd3d
|
@ -272,13 +272,13 @@ export default class ComposerMessages extends Component {
|
||||||
|
|
||||||
this.set("checkedMessages", true);
|
this.set("checkedMessages", true);
|
||||||
|
|
||||||
for (const msg of messages) {
|
messages.forEach((msg) => {
|
||||||
if (msg.wait_for_typing) {
|
if (msg.wait_for_typing) {
|
||||||
this.queuedForTyping.addObject(msg);
|
this.queuedForTyping.addObject(msg);
|
||||||
} else {
|
} else {
|
||||||
this.popup(msg);
|
this.popup(msg);
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
|
|
Loading…
Reference in New Issue