Skip to content

Commit

Permalink
feat: ignore uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
thji committed Apr 9, 2024
1 parent ca09ff7 commit 80ba71f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public List<FSItemDto> queryCases(String workspaceId, String name, List<String>
Query query = Query.query(
Criteria.where(FSInterfaceCollection.Fields.workspaceId).is(workspaceId));
if (StringUtils.isNotEmpty(name)) {
query.addCriteria(Criteria.where(FSInterfaceCollection.Fields.name).regex(name, "i"));
query.addCriteria(Criteria.where(FSInterfaceCollection.Fields.name).regex(name,"i"));
}
if (includeLabels != null && !includeLabels.isEmpty()) {
query.addCriteria(new Criteria().orOperator(
Expand Down

0 comments on commit 80ba71f

Please sign in to comment.