File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
services/static-webserver/client/source/class/osparc/data/model Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ qx.Class.define("osparc.data.model.IframeHandler", {
309309 __serviceReadyIn : function ( srvUrl ) {
310310 const node = this . getNode ( ) ;
311311 node . setServiceUrl ( srvUrl ) ;
312- this . __setCustomInteractive ( "ready" ) ;
312+ node . getStatus ( ) . setInteractive ( "ready" ) ;
313313 } ,
314314
315315 __setCustomInteractive : function ( customStatus ) {
@@ -396,7 +396,7 @@ qx.Class.define("osparc.data.model.IframeHandler", {
396396 const node = this . getNode ( ) ;
397397 const status = node . getStatus ( ) . getInteractive ( ) ;
398398 // it might have been stopped
399- if ( status === "running" ) {
399+ if ( [ "running" , "ready" ] . includes ( status ) ) {
400400 this . getIFrame ( ) . resetSource ( ) ;
401401 this . getIFrame ( ) . setSource ( node . getServiceUrl ( ) ) ;
402402
You can’t perform that action at this time.
0 commit comments