We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fedce8f commit e991377Copy full SHA for e991377
services/static-webserver/client/source/class/osparc/ui/markdown/Markdown2.js
@@ -200,11 +200,9 @@ qx.Class.define("osparc.ui.markdown.Markdown2", {
200
this.setHeight(totalH);
201
202
// width: shrink-to-fit, but cap at a max
203
- this.setMaxWidth(null); // measurer already capped; we set exact width
204
- this.setMinWidth(1); // avoid 0 when empty
205
- this.setWidth(totalW); // exact bubble width
206
-
207
- console.log("totalH", totalH, "totalW", totalW);
+ this.setMaxWidth(null); // measurer already capped; we set exact width
+ this.setMinWidth(1); // avoid 0 when empty
+ this.setWidth(totalW);
208
});
209
},
210
}
0 commit comments