Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbie1977 committed Nov 23, 2021
1 parent db06ad6 commit d34e44a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/configuration/VFBMain/searchConfiguration.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,10 @@ var searchConfiguration = {
return 1;
}
// move up expression (VFBexp) terms
if (a.id.indexOf(VFBexp) > -1 && b.id.indexOf(VFBexp) < 0) {
if (a.id.indexOf("VFBexp") > -1 && b.id.indexOf("VFBexp") < 0) {
return -1;
}
if (b.id.indexOf(VFBexp) > -1 && a.id.indexOf(VFBexp) < 0) {
if (b.id.indexOf("VFBexp") > -1 && a.id.indexOf("VFBexp") < 0) {
return 1;
}
// if the match in the id is closer to start then move up
Expand Down

0 comments on commit d34e44a

Please sign in to comment.