Skip to content

Commit

Permalink
Fix personalized search criteria
Browse files Browse the repository at this point in the history
  • Loading branch information
FOSSLight-dev committed Sep 5, 2023
1 parent 8ab6242 commit 133dee7
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ private Object makeSearchFilterObject(String filterString, String searchType) {
break;
case "priority" : project.setPriority(value);
break;
case "publicYn" : project.setPublicYn(value);
break;
default : break;
}
}
Expand Down Expand Up @@ -157,6 +159,8 @@ private Object makeSearchFilterObject(String filterString, String searchType) {
break;
case "status" : partner.setStatus(value);
break;
case "publicYn" : partner.setPublicYn(value);
break;
default : break;
}
}
Expand Down

0 comments on commit 133dee7

Please sign in to comment.