Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Jun 23, 2024
1 parent 916b121 commit 1564151
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 @@ -4614,7 +4614,7 @@ step.util = {
for (var cc = 0; cc < elmtsWithMorph.length; cc ++) {
if (elmtsWithMorph[cc].innerText !== "") continue;
var curMorphs = step.util.convertMorphOSHM2TOS( $($(elmtsWithMorph[cc]).parent()[0]).attr('morph') );
if ((typeof curMorphs !== "string") || (curMorphs.indexOf("TOS:") != 0)) continue;
if (typeof curMorphs !== "string") continue; // || (curMorphs.indexOf("TOS:") != 0)) continue;
var cmArray = curMorphs.split(" ");
var strongArray = [];
if (cmArray.length > 1) {
Expand Down

0 comments on commit 1564151

Please sign in to comment.