We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b7464e commit 671c544Copy full SHA for 671c544
services/static-webserver/client/source/class/osparc/study/Conversations.js
@@ -302,9 +302,9 @@ qx.Class.define("osparc.study.Conversations", {
302
backgroundColor: "transparent",
303
});
304
newConversationButton.addListener("execute", () => {
305
- osparc.study.Conversations.addConversation(studyData["uuid"], "new " + (conversations.length + 1))
306
- .then(conversation => {
307
- this.__addConversation(conversation);
+ osparc.study.Conversations.addConversation(studyData["uuid"], "new " + (this.__conversations.length + 1))
+ .then(conversationDt => {
+ this.__addConversation(conversationDt);
308
309
310
conversationsLayout.getChildControl("bar").add(newConversationButton);
0 commit comments