Skip to content

Commit f8684e2

Browse files
committed
more aesthetics
1 parent a5c41a6 commit f8684e2

File tree

1 file changed

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

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ qx.Class.define("osparc.info.CommentUI", {
6565
control = new qx.ui.container.Composite(new qx.ui.layout.HBox(5).set({
6666
alignX: this.__isMyComment() ? "right" : "left"
6767
}));
68+
control.addAt(new qx.ui.basic.Label("-"), 1);
6869
this._add(control, {
6970
row: 0,
7071
column: 1
@@ -74,13 +75,13 @@ qx.Class.define("osparc.info.CommentUI", {
7475
control = new qx.ui.basic.Label().set({
7576
font: "text-12"
7677
});
77-
this.getChildControl("header-layout").addAt(control, 0);
78+
this.getChildControl("header-layout").addAt(control, this.__isMyComment() ? 2 : 0);
7879
break;
7980
case "last-updated":
8081
control = new qx.ui.basic.Label().set({
8182
font: "text-12"
8283
});
83-
this.getChildControl("header-layout").addAt(control, 1);
84+
this.getChildControl("header-layout").addAt(control, this.__isMyComment() ? 0 : 2);
8485
break;
8586
case "comment-content":
8687
control = new osparc.ui.markdown.Markdown().set({

0 commit comments

Comments
 (0)