File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
services/static-webserver/client/source/class/osparc Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -51,19 +51,19 @@ qx.Class.define("osparc.navigation.UserMenu", {
5151 control . addListener ( "execute" , ( ) => osparc . desktop . account . MyAccountWindow . openWindow ( ) , this ) ;
5252 this . add ( control ) ;
5353 break ;
54- case "admin -center" :
55- control = new qx . ui . menu . Button ( this . tr ( "Admin Center" ) ) ;
56- control . addListener ( "execute" , ( ) => osparc . admin . AdminCenterWindow . openWindow ( ) , this ) ;
54+ case "tester -center" :
55+ control = new qx . ui . menu . Button ( this . tr ( "Tester Center" ) ) ;
56+ control . addListener ( "execute" , ( ) => osparc . tester . TesterCenterWindow . openWindow ( ) , this ) ;
5757 this . add ( control ) ;
5858 break ;
5959 case "po-center" :
6060 control = new qx . ui . menu . Button ( this . tr ( "PO Center" ) ) ;
6161 control . addListener ( "execute" , ( ) => osparc . po . POCenterWindow . openWindow ( ) , this ) ;
6262 this . add ( control ) ;
6363 break ;
64- case "tester -center" :
65- control = new qx . ui . menu . Button ( this . tr ( "Tester Center" ) ) ;
66- control . addListener ( "execute" , ( ) => osparc . tester . TesterCenterWindow . openWindow ( ) , this ) ;
64+ case "admin -center" :
65+ control = new qx . ui . menu . Button ( this . tr ( "Admin Center" ) ) ;
66+ control . addListener ( "execute" , ( ) => osparc . admin . AdminCenterWindow . openWindow ( ) , this ) ;
6767 this . add ( control ) ;
6868 break ;
6969 case "billing-center" :
Original file line number Diff line number Diff line change @@ -340,7 +340,7 @@ qx.Class.define("osparc.po.UsersPending", {
340340 __createRejectButton : function ( email ) {
341341 const button = new osparc . ui . form . FetchButton ( "Reject" ) ;
342342 button . addListener ( "execute" , ( ) => {
343- const msg = `Are you sure you want to reject ${ email } .<br>The operation cannot be reverted" ` ;
343+ const msg = `Are you sure you want to reject ${ email } .<br>The operation cannot be reverted` ;
344344 const win = new osparc . ui . window . Confirmation ( msg ) . set ( {
345345 caption : "Reject User" ,
346346 confirmText : "Reject" ,
You can’t perform that action at this time.
0 commit comments