Skip to content

Commit

Permalink
move paranthesis to make the correct comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
talavis committed Apr 15, 2019
1 parent 51ea3f5 commit 662917a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/js/controller.browserController.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
// TODO Move to function later
let mapFunction = function(variant) {
variant.isPass = variant.filter == "PASS";
if (variant.flags.indexOf("LoF" == -1))
if (variant.flags.indexOf("LoF") === -1)
variant.isLof = false;
else
variant.isLof = true;
Expand Down

0 comments on commit 662917a

Please sign in to comment.