@@ -117,6 +117,7 @@ qx.Class.define("osparc.navigation.NavigationBar", {
117117
118118 // right-items
119119 this . getChildControl ( "tasks-button" ) ;
120+ this . getChildControl ( "jobs-button" ) ;
120121 this . getChildControl ( "notifications-button" ) ;
121122 this . getChildControl ( "expiration-icon" ) ;
122123 this . getChildControl ( "help" ) ;
@@ -218,14 +219,14 @@ qx.Class.define("osparc.navigation.NavigationBar", {
218219 this . getChildControl ( "center-items" ) . add ( control ) ;
219220 break ;
220221 }
221- case "credits-button" :
222- control = new osparc . desktop . credits . CreditsIndicatorButton ( ) ;
223- this . getChildControl ( "right-items" ) . add ( control ) ;
224- break ;
225222 case "tasks-button" :
226223 control = new osparc . task . TasksButton ( ) ;
227224 this . getChildControl ( "right-items" ) . add ( control ) ;
228225 break ;
226+ case "jobs-button" :
227+ control = new osparc . jobs . JobsButton ( ) ;
228+ this . getChildControl ( "right-items" ) . add ( control ) ;
229+ break ;
229230 case "notifications-button" :
230231 control = new osparc . notification . NotificationsButton ( ) ;
231232 this . getChildControl ( "right-items" ) . add ( control ) ;
@@ -262,6 +263,10 @@ qx.Class.define("osparc.navigation.NavigationBar", {
262263 osparc . utils . Utils . setIdToWidget ( control , "helpNavigationBtn" ) ;
263264 this . getChildControl ( "right-items" ) . add ( control ) ;
264265 break ;
266+ case "credits-button" :
267+ control = new osparc . desktop . credits . CreditsIndicatorButton ( ) ;
268+ this . getChildControl ( "right-items" ) . add ( control ) ;
269+ break ;
265270 case "log-in-button" : {
266271 control = this . __createLoginBtn ( ) . set ( {
267272 visibility : "excluded"
0 commit comments