Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Mar 30, 2024
1 parent c9ccba4 commit 1405eb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion step-web/src/main/webapp/js/step.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -3861,7 +3861,7 @@ step.util = {
var strongArray = strong.split(" ");
var uniqueStrongArray = [];
for (var j = 0; j < strongArray.length; j++) { // remove duplicates
if ((strongArray[j].indexOf("lemma") > -1) && // KJV has some non strong tags
if ((strongArray[j].indexOf("lemma") == -1) && // KJV has some non strong tags
(uniqueStrongArray.indexOf(strongArray[j]) == -1))
uniqueStrongArray.push(strongArray[j]);
}
Expand Down

0 comments on commit 1405eb7

Please sign in to comment.