File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed
services/static-webserver/client/source/class/osparc Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -651,15 +651,8 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
651651 requestParams . orderBy = JSON . stringify ( this . getOrderBy ( ) ) ;
652652
653653 const filterData = this . _searchBarFilter . getFilterData ( ) ;
654- if ( filterData . text || filterData . tags . length ) {
655- requestParams . text = "" ;
656- requestParams . tags = "" ;
657- if ( filterData . text ) {
658- requestParams . text = encodeURIComponent ( filterData . text ) ; // name, description and uuid
659- }
660- if ( filterData . tags . length ) {
661- requestParams . tags = filterData . tags . join ( "," ) ;
662- }
654+ if ( filterData . text ) {
655+ requestParams . text = encodeURIComponent ( filterData . text ) ; // name, description and uuid
663656 return requestParams ;
664657 }
665658
Original file line number Diff line number Diff line change @@ -126,7 +126,8 @@ qx.Class.define("osparc.data.Resources", {
126126 getPageSearch : {
127127 useCache : false ,
128128 method : "GET" ,
129- url : statics . API + "/projects:search?offset={offset}&limit={limit}&text={text}&tag_ids={tags}&order_by={orderBy}"
129+ url : statics . API + "/projects:search?offset={offset}&limit={limit}&text={text}&order_by={orderBy}"
130+ // url: statics.API + "/projects:search?offset={offset}&limit={limit}&text={text}&tags={tags}&order_by={orderBy}"
130131 } ,
131132 getOne : {
132133 useCache : false ,
You can’t perform that action at this time.
0 commit comments