Skip to content

Commit 350b698

Browse files
committed
[skip ci] focusable
1 parent b33f2fd commit 350b698

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

services/static-webserver/client/source/class/osparc/service/ServiceList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ qx.Class.define("osparc.service.ServiceList", {
2929
*/
3030
construct: function(filterGroupId) {
3131
this.base(arguments);
32-
this._setLayout(new qx.ui.layout.Flow(5, 5));
32+
this._setLayout(new qx.ui.layout.VBox(5));
3333
if (filterGroupId) {
3434
this.__filterGroup = filterGroupId;
3535
}

services/static-webserver/client/source/class/osparc/service/ServiceListItem.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ qx.Class.define("osparc.service.ServiceListItem", {
2626
height: this.self().ITEM_HEIGHT,
2727
paddingTop: 0,
2828
paddingBottom: 0,
29-
allowGrowX: true
29+
allowGrowX: true,
30+
focusable: true,
3031
});
3132

3233
this.setResourceType("service");

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,18 @@ qx.Class.define("osparc.workbench.ServiceCatalog", {
5454

5555
this.__sortBy = osparc.service.SortServicesButtons.DefaultSorting;
5656

57-
let catalogLayout = new qx.ui.layout.VBox();
57+
const catalogLayout = new qx.ui.layout.VBox();
5858
this.setLayout(catalogLayout);
5959

60-
let filterLayout = this.__createFilterLayout();
60+
const filterLayout = this.__createFilterLayout();
6161
this.add(filterLayout);
6262

63-
let list = this.__createListLayout();
63+
const list = this.__createListLayout();
6464
this.add(list, {
6565
flex: 1
6666
});
6767

68-
let btnLayout = this.__createButtonsLayout();
68+
const btnLayout = this.__createButtonsLayout();
6969
this.add(btnLayout);
7070

7171
this.__createEvents();

0 commit comments

Comments
 (0)