Skip to content

Commit 671c544

Browse files
committed
minor
1 parent 0b7464e commit 671c544

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

services/static-webserver/client/source/class/osparc/study/Conversations.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,9 +302,9 @@ qx.Class.define("osparc.study.Conversations", {
302302
backgroundColor: "transparent",
303303
});
304304
newConversationButton.addListener("execute", () => {
305-
osparc.study.Conversations.addConversation(studyData["uuid"], "new " + (conversations.length + 1))
306-
.then(conversation => {
307-
this.__addConversation(conversation);
305+
osparc.study.Conversations.addConversation(studyData["uuid"], "new " + (this.__conversations.length + 1))
306+
.then(conversationDt => {
307+
this.__addConversation(conversationDt);
308308
});
309309
});
310310
conversationsLayout.getChildControl("bar").add(newConversationButton);

0 commit comments

Comments
 (0)