Skip to content

Commit

Permalink
fix a Strong number in code
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Oct 5, 2023
1 parent 198ce5a commit acb0651
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 @@ -125,7 +125,7 @@ step.util = {
outstandingRequests: 0,
timers: {},
suppressHighlight: function(strongNumber) {
if (("G0846,H0853,H0996G,H1961,H4480A,H5704,H5921A,G1161,G3588,G3754G,".indexOf(strongNumber + ",") > -1) || (strongNumber.substring(0,2) === "H9"))
if (("H0846,H0853,H0996G,H1961,H4480A,H5704,H5921A,G1161,G3588,G3754G,".indexOf(strongNumber + ",") > -1) || (strongNumber.substring(0,2) === "H9"))
return true;
return false;
},
Expand Down

0 comments on commit acb0651

Please sign in to comment.