File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
services/static-webserver/client/source/class/osparc/dashboard Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -661,7 +661,9 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
661661 requestParams . orderBy = JSON . stringify ( this . getOrderBy ( ) ) ;
662662
663663 const filterData = this . _searchBarFilter . getFilterData ( ) ;
664- if ( filterData . text || filterData . tags . length ) {
664+ // Use the ``search`` functionality only if the user types some text
665+ // tags should only be used to filter the current context (search context ot workspace/folder context)
666+ if ( filterData . text ) {
665667 requestParams . text = filterData . text ? encodeURIComponent ( filterData . text ) : "" ; // name, description and uuid
666668 requestParams [ "tagIds" ] = filterData . tags . length ? filterData . tags . join ( "," ) : "" ;
667669 return requestParams ;
You can’t perform that action at this time.
0 commit comments