Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Nov 12, 2023
1 parent 0d0a8f6 commit 84229ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions step-web/src/main/webapp/js/step.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -3765,8 +3765,8 @@ step.util = {
$.ajaxSetup({async: false});
for (var j = 0; j < strongArray.length; j++) {
var strongWithoutAugment = step.util.fixStrongNumForVocabInfo(strongArray[j], true);
if (processedStrong.indexOf(strongWithoutAugment) == -1) {
processedStrong.push(strongWithoutAugment);
if (processedStrong.indexOf(strongArray[j]) == -1) {
processedStrong.push(strongArray[j]);
$.getJSON("/html/lexicon/" + additionalPath + strongWithoutAugment + ".json", function(origJsonVar) {
var augStrongIndex = -1;
var defaultDStrong = -1;
Expand Down

0 comments on commit 84229ce

Please sign in to comment.