Skip to content

Commit

Permalink
making a case insensitive search
Browse files Browse the repository at this point in the history
  • Loading branch information
koustov committed Aug 3, 2022
1 parent 233edbf commit d15a37a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/services/request/query/fetch-plays.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ export function FetchPlaysByNameAndUser(playname, username) {
conditions: [
{
field: "name",
operator: "eq",
operator: "ilike",
value: playname,
type: "string",
},
{
field: "github",
operator: "eq",
operator: "ilike",
value: username,
type: "string",
},
Expand Down

0 comments on commit d15a37a

Please sign in to comment.