Skip to content

Commit 8e92f17

Browse files
committed
setCustomInteractive("ready")
1 parent 15605ac commit 8e92f17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/static-webserver/client/source/class/osparc/data/model/IframeHandler.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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-
node.getStatus().setInteractive("ready");
312+
this.__setCustomInteractive("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 === "ready") {
399+
if (status === "running") {
400400
this.getIFrame().resetSource();
401401
this.getIFrame().setSource(node.getServiceUrl());
402402

0 commit comments

Comments
 (0)