File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
services/static-webserver/client/source/class/osparc/auth Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ qx.Class.define("osparc.auth.LoginPageSplit", {
2525 const layout = new qx . ui . layout . HBox ( ) ;
2626 this . _setLayout ( layout ) ;
2727
28+ const loginPage = this . __loginPage = new osparc . auth . LoginWithDecorators ( ) ;
29+ loginPage . addListener ( "done" , e => this . fireDataEvent ( "done" , e . getData ( ) ) ) ;
30+
2831 this . __rebuildLayout ( ) ;
2932
3033 setTimeout ( ( ) => this . __resized ( ) , 100 ) ;
@@ -67,8 +70,7 @@ qx.Class.define("osparc.auth.LoginPageSplit", {
6770 __rebuildLayout : function ( ) {
6871 this . _removeAll ( ) ;
6972
70- const loginPage = new osparc . auth . LoginWithDecorators ( ) ;
71- loginPage . addListener ( "done" , e => this . fireDataEvent ( "done" , e . getData ( ) ) ) ;
73+ const loginPage = this . __loginWithDecorators ;
7274 const container = new qx . ui . container . Scroll ( ) ;
7375 container . add ( loginPage ) ;
7476 const spacers = [
You can’t perform that action at this time.
0 commit comments