Skip to content

Commit 2cca9ed

Browse files
committed
minor
1 parent e78c1bd commit 2cca9ed

File tree

1 file changed

+2
-2
lines changed
  • services/static-webserver/client/source/class/osparc/node/slideshow

1 file changed

+2
-2
lines changed

services/static-webserver/client/source/class/osparc/node/slideshow/BaseNodeView.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,15 +235,15 @@ qx.Class.define("osparc.node.slideshow.BaseNodeView", {
235235
}
236236
const desc = this.getNode().getSlideshowInstructions();
237237
if (desc) {
238-
const descView = new osparc.ui.markdown.Markdown().set({
238+
const markdownInstructions = new osparc.ui.markdown.Markdown().set({
239239
value: desc,
240240
padding: 3,
241241
font: "text-14"
242242
});
243243
const title = this.tr("Instructions") + " - " + this.getNode().getLabel();
244244
const width = 600;
245245
const minHeight = 200;
246-
const win = this.__instructionsWindow = osparc.ui.window.Window.popUpInWindow(descView, title, width, minHeight).set({
246+
const win = this.__instructionsWindow = osparc.ui.window.Window.popUpInWindow(markdownInstructions, title, width, minHeight).set({
247247
modal: false,
248248
clickAwayClose: false
249249
});

0 commit comments

Comments
 (0)