Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Jul 15, 2024
1 parent 23c8547 commit 1d0c100
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 @@ -3947,7 +3947,7 @@ step.util = {
var strongArray = strong.split(" ");
var uniqueStrongArray = [];
for (var j = 0; j < strongArray.length; j++) { // remove duplicates
if (uniqueStrongArray.indexOf(strongArray[j]) > -1)
if (uniqueStrongArray.indexOf(strongArray[j]) == -1)
uniqueStrongArray.push(strongArray[j]);
}
var additionalPath = step.state.getCurrentVersion();
Expand Down

0 comments on commit 1d0c100

Please sign in to comment.