File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
services/web/client/source/class/osparc/desktop Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -758,21 +758,20 @@ qx.Class.define("osparc.desktop.WorkbenchView", {
758758 } ) ;
759759 }
760760
761+ this . __outputsPage . getChildControl ( "button" ) . show ( ) ;
761762 if ( node . hasOutputs ( ) ) {
762- this . __outputsPage . getChildControl ( "button" ) . show ( ) ;
763-
764763 const portTree = new osparc . component . widget . inputs . NodeOutputTree ( node , node . getMetaData ( ) . outputs ) . set ( {
765764 allowGrowY : false
766765 } ) ;
767766 this . __outputsPage . add ( portTree ) ;
768-
769- const outputFilesBtn = new qx . ui . form . Button ( this . tr ( "Artifacts" ) , "@FontAwesome5Solid/folder-open/14" ) . set ( {
770- allowGrowX : false
771- } ) ;
772- osparc . utils . Utils . setIdToWidget ( outputFilesBtn , "nodeOutputFilesBtn" ) ;
773- outputFilesBtn . addListener ( "execute" , ( ) => osparc . component . node . BaseNodeView . openNodeDataManager ( node ) ) ;
774- this . __outputsPage . add ( outputFilesBtn ) ;
775767 }
768+
769+ const outputFilesBtn = new qx . ui . form . Button ( this . tr ( "Artifacts" ) , "@FontAwesome5Solid/folder-open/14" ) . set ( {
770+ allowGrowX : false
771+ } ) ;
772+ osparc . utils . Utils . setIdToWidget ( outputFilesBtn , "nodeOutputFilesBtn" ) ;
773+ outputFilesBtn . addListener ( "execute" , ( ) => osparc . component . node . BaseNodeView . openNodeDataManager ( node ) ) ;
774+ this . __outputsPage . add ( outputFilesBtn ) ;
776775 } ,
777776
778777 getLogger : function ( ) {
You can’t perform that action at this time.
0 commit comments