Skip to content

Commit 81eeb1b

Browse files
committed
Merge branch 'feature/proejcts-search' of github.com:odeimaiz/osparc-simcore into feature/proejcts-search
2 parents 1996f4c + 76a37ac commit 81eeb1b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

services/static-webserver/client/source/class/osparc/dashboard/SearchBarFilter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ qx.Class.define("osparc.dashboard.SearchBarFilter", {
369369
return;
370370
}
371371
const chip = this.self().createChip(type, id, label);
372-
chip.addListener("execute", () => this.__removeChip(chipType, chipId), this);
372+
chip.addListener("execute", () => this.__removeChip(type, id), this);
373373
activeFilter.add(chip);
374374
this.__filter();
375375
},

services/static-webserver/client/source/class/osparc/dashboard/SearchBarFilterExtended.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ qx.Class.define("osparc.dashboard.SearchBarFilterExtended", {
171171
radioGroup.add(myProjectsButton, templatesButton, publicProjectsButton);
172172
myProjectsButton.addListener("changeValue", e => e.getData() ? this.setCurrentContext(osparc.dashboard.StudyBrowser.CONTEXT.SEARCH_PROJECTS) : null, this);
173173
templatesButton.addListener("changeValue", e => e.getData() ? this.setCurrentContext(osparc.dashboard.StudyBrowser.CONTEXT.SEARCH_TEMPLATES) : null, this);
174-
publicProjectsButton.addListener("changeValue", e => e.getData() ? this.setCurrentContext(osparc.dashboard.StudyBrowser.CONTEXT.SEARCH_TEMPLATE.SEARCH_PUBLIC_TEMPLATES) : null, this);
174+
publicProjectsButton.addListener("changeValue", e => e.getData() ? this.setCurrentContext(osparc.dashboard.StudyBrowser.CONTEXT.SEARCH_PUBLIC_TEMPLATES) : null, this);
175175

176176
// Set initial state based on the provided initFilterData
177177
const activeFilters = this.getChildControl("search-bar-filter").getChildControl("active-filters");
@@ -297,7 +297,7 @@ qx.Class.define("osparc.dashboard.SearchBarFilterExtended", {
297297

298298
this.exclude();
299299
document.removeEventListener("mousedown", tapListener);
300-
};;
300+
};
301301
document.addEventListener("mousedown", tapListener);
302302
},
303303
}

0 commit comments

Comments
 (0)