Skip to content

Commit d851b99

Browse files
authored
Checkpoints II (ITISFoundation#3015)
1 parent 224fee9 commit d851b99

File tree

13 files changed

+56
-548
lines changed

13 files changed

+56
-548
lines changed

services/web/client/source/class/osparc/component/cluster/ClusterWorkers.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,11 @@ qx.Class.define("osparc.component.cluster.ClusterWorkers", {
120120
const plotId = "ClusterDetails_" + plotKey + "-" + row;
121121
const w = parseInt(gridW/Object.keys(plots).length);
122122
const h = parseInt(w*0.75);
123-
const plot = new osparc.component.widget.PlotlyWidget(plotId, gaugeDatas, layout).set({
123+
// hide plotly toolbar
124+
const config = {
125+
displayModeBar: false
126+
};
127+
const plot = new osparc.component.widget.PlotlyWidget(plotId, gaugeDatas, layout, config).set({
124128
width: w,
125129
height: h
126130
});

services/web/client/source/class/osparc/component/snapshots/SnapshotsView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ qx.Class.define("osparc.component.snapshots.SnapshotsView", {
9494
gitGraphWrapper.init(gitGraphCanvas, gitGraphInteract)
9595
.then(() => {
9696
gitGraphWrapper.populateGraph(this.__snapshots, this.__currentSnapshot);
97-
console.log("gitGraphWrapper", gitGraphWrapper);
97+
this.__snapshotSelected(this.__currentSnapshot["id"]);
9898
});
9999
gitGraphWrapper.addListener("snapshotTap", e => {
100100
const snapshotId = e.getData();

services/web/client/source/class/osparc/component/widget/NodeInOut.js

Lines changed: 0 additions & 140 deletions
This file was deleted.

services/web/client/source/class/osparc/component/widget/NodeInput.js

Lines changed: 0 additions & 115 deletions
This file was deleted.

0 commit comments

Comments
 (0)