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 804616a commit afcda38Copy full SHA for afcda38
services/static-webserver/client/source/class/osparc/study/Conversations.js
@@ -221,6 +221,12 @@ qx.Class.define("osparc.study.Conversations", {
221
222
__addToPages: function(conversationPage) {
223
const conversationsLayout = this.getChildControl("conversations-layout");
224
+ if (conversationsLayout.getChildren().length === 1) {
225
+ // remove the temporary conversation page
226
+ if (conversationsLayout.getChildren()[0].getConversationId() === null) {
227
+ conversationsLayout.remove(conversationsLayout.getChildren()[0]);
228
+ }
229
230
conversationsLayout.add(conversationPage);
231
232
if (this.__newConversationButton === null) {
0 commit comments