File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
services/static-webserver/client/source/class/osparc/info Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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 ( {
You can’t perform that action at this time.
0 commit comments