Skip to content

Commit

Permalink
Fix filter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mboudet committed May 21, 2021
1 parent 31e7945 commit b8cdcc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions askomics/react/src/routes/query/query.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -464,8 +464,8 @@ export default class Query extends Component {
let resFilterNode
let resFilterLink

let reNode = new RegExp(node.filterNode, 'g')
let reLink = new RegExp(node.filterLink, 'g')
let reNode = new RegExp(node.filterNode.toLowerCase(), 'g')
let reLink = new RegExp(node.filterLink.toLowerCase(), 'g')

let specialNodeGroupId = incrementSpecialNodeGroupId ? incrementSpecialNodeGroupId : node.specialNodeGroupId

Expand Down

0 comments on commit b8cdcc1

Please sign in to comment.