Skip to content

Commit a0ee59d

Browse files
committed
minor
1 parent beda24d commit a0ee59d

File tree

1 file changed

+2
-9
lines changed
  • services/static-webserver/client/source/class/osparc/info

1 file changed

+2
-9
lines changed

services/static-webserver/client/source/class/osparc/info/StudyMedium.js

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,8 @@ qx.Class.define("osparc.info.StudyMedium", {
7373
const extraInfoLayout = this.__createExtraInfo(extraInfo);
7474
this._add(extraInfoLayout);
7575

76-
const descriptionLayout = new qx.ui.container.Composite(new qx.ui.layout.VBox(8)).set({
77-
marginTop: -10 // bring it closer to the extra info
78-
});
79-
const title = new qx.ui.basic.Label(this.tr("DESCRIPTION")).set({
80-
paddingLeft: 14 // align it with the other titles
81-
});
82-
descriptionLayout.add(title);
83-
descriptionLayout.add(osparc.info.StudyUtils.createDescription(this.getStudy()));
84-
this._add(descriptionLayout);
76+
const description = osparc.info.StudyUtils.createDescription(this.getStudy());
77+
this._add(description);
8578
},
8679

8780
__createMenuButton: function() {

0 commit comments

Comments
 (0)