File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
services/static-webserver/client/source/class/osparc/study Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ qx.Class.define("osparc.study.Conversation", {
2020 extend : qx . ui . tabview . Page ,
2121
2222 /**
23- * @param studyData {String} Study Data
2423 * @param conversationData {Object} Conversation Data
24+ * @param studyData {String} Study Data
2525 */
26- construct : function ( studyData , conversationData ) {
26+ construct : function ( conversationData , studyData ) {
2727 this . base ( arguments ) ;
2828
2929 this . __studyData = studyData ;
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ qx.Class.define("osparc.study.Conversations", {
163163 const studyData = this . getStudyData ( ) ;
164164 let conversationPage = null ;
165165 if ( conversationData ) {
166- conversationPage = new osparc . study . Conversation ( studyData , conversationData ) ;
166+ conversationPage = new osparc . study . Conversation ( conversationData , studyData ) ;
167167 conversationPage . setLabel ( conversationData [ "name" ] ) ;
168168 const conversationId = conversationData [ "conversationId" ] ;
169169 osparc . store . ConversationsProject . getInstance ( ) . addListener ( "conversationDeleted" , e => {
@@ -174,7 +174,7 @@ qx.Class.define("osparc.study.Conversations", {
174174 } ) ;
175175 } else {
176176 // create a temporary conversation
177- conversationPage = new osparc . study . Conversation ( studyData ) ;
177+ conversationPage = new osparc . study . Conversation ( null , studyData ) ;
178178 conversationPage . setLabel ( this . tr ( "new" ) ) ;
179179 }
180180 return conversationPage ;
You can’t perform that action at this time.
0 commit comments