We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fa6ee2 commit 7264a1eCopy full SHA for 7264a1e
services/static-webserver/client/source/class/osparc/form/tag/TagManager.js
@@ -70,7 +70,9 @@ qx.Class.define("osparc.form.tag.TagManager", {
70
this._add(filter);
71
72
const tagsContainer = this.__tagsContainer = new qx.ui.container.Composite(new qx.ui.layout.VBox());
73
- this._add(tagsContainer, {
+ const scrollView = new qx.ui.container.Scroll();
74
+ scrollView.add(tagsContainer);
75
+ this._add(scrollView, {
76
flex: 1
77
});
78
0 commit comments