Skip to content

Commit 016ef38

Browse files
committed
minors
1 parent 75f04cc commit 016ef38

File tree

1 file changed

+7
-1
lines changed
  • services/static-webserver/client/source/class/osparc/form/tag

1 file changed

+7
-1
lines changed

services/static-webserver/client/source/class/osparc/form/tag/TagItem.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)