Skip to content

Commit 671ea5c

Browse files
committed
minor aesthetics
1 parent 854af6e commit 671ea5c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

services/static-webserver/client/source/class/osparc/filter/group/ServiceFilterGroup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ qx.Class.define("osparc.filter.group.ServiceFilterGroup", {
2727
*/
2828
construct: function(filterGroupId) {
2929
this.base(arguments);
30-
this._setLayout(new qx.ui.layout.HBox(5));
30+
this._setLayout(new qx.ui.layout.HBox(10));
3131
this.__filterGroupId = filterGroupId;
3232
const textFilter = this.__textFilter = new osparc.filter.TextFilter("text", filterGroupId);
3333
osparc.utils.Utils.setIdToWidget(textFilter, "serviceFiltersTextFld");

services/static-webserver/client/source/class/osparc/workbench/ServiceCatalog.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,11 @@ qx.Class.define("osparc.workbench.ServiceCatalog", {
103103
});
104104

105105
const filters = new osparc.filter.group.ServiceFilterGroup("serviceCatalog").set({
106-
maxHeight: 30
106+
maxHeight: 30,
107+
});
108+
this.__textFilter = filters.getTextFilter().getChildControl("textfield", true).set({
109+
minWidth: 150,
107110
});
108-
this.__textFilter = filters.getTextFilter().getChildControl("textfield", true);
109111
layout.add(filters);
110112

111113
layout.add(new qx.ui.core.Spacer(), {
@@ -131,9 +133,7 @@ qx.Class.define("osparc.workbench.ServiceCatalog", {
131133
width: 568,
132134
backgroundColor: "background-main"
133135
});
134-
const scrolledServices = new qx.ui.container.Scroll().set({
135-
height: 260
136-
});
136+
const scrolledServices = new qx.ui.container.Scroll();
137137
scrolledServices.add(serviceList);
138138

139139
this.__serviceList.addListener("changeSelected", e => {

0 commit comments

Comments
 (0)