Skip to content

Commit a75fb90

Browse files
committed
search endpoint wired
1 parent 215f8c7 commit a75fb90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/static-webserver/client/source/class/osparc/share/NewCollaboratorsManager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ qx.Class.define("osparc.share.NewCollaboratorsManager", {
7979
const searchButton = new osparc.ui.form.FetchButton(this.tr("Search"), "@FontAwesome5Solid/search/12").set({
8080
maxHeight: 30,
8181
});
82-
searchButton.addListener("exectue", () => this.__searchUsers(), this);
82+
searchButton.addListener("execute", () => this.__searchUsers(), this);
8383
toolbar.add(searchButton);
8484
this.add(toolbar);
8585

@@ -110,7 +110,7 @@ qx.Class.define("osparc.share.NewCollaboratorsManager", {
110110
},
111111

112112
__searchUsers: function() {
113-
const text = this.__textFilter.getValue();
113+
const text = this.__textFilter.getChildControl("textfield").getValue();
114114
console.log("search", text);
115115
const params = {
116116
data: {

0 commit comments

Comments
 (0)