File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
services/static-webserver/client/source/class/osparc/form/tag Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ qx.Class.define("osparc.form.tag.TagItem", {
1414 construct : function ( ) {
1515 this . base ( arguments ) ;
1616 this . _setLayout ( new qx . ui . layout . HBox ( 5 ) ) ;
17+ this . set ( {
18+ alignY : "middle" ,
19+ } ) ;
1720 this . __validationManager = new qx . ui . form . validation . Manager ( ) ;
1821 } ,
1922
@@ -94,14 +97,17 @@ qx.Class.define("osparc.form.tag.TagItem", {
9497 let control ;
9598 switch ( id ) {
9699 case "tag" :
97- control = new osparc . ui . basic . Tag ( ) ;
100+ control = new osparc . ui . basic . Tag ( ) . set ( {
101+ alignY : "middle" ,
102+ } ) ;
98103 this . bind ( "name" , control , "value" ) ;
99104 this . bind ( "color" , control , "color" ) ;
100105 break ;
101106 case "description" :
102107 control = new qx . ui . basic . Label ( ) . set ( {
103108 rich : true ,
104109 allowGrowX : true ,
110+ alignY : "middle" ,
105111 } ) ;
106112 this . bind ( "description" , control , "value" ) ;
107113 break ;
You can’t perform that action at this time.
0 commit comments