From 23c85475b1606beb5344878ed30a4eed00999649 Mon Sep 17 00:00:00 2001 From: Patrick Tang Date: Mon, 15 Jul 2024 01:17:09 -0700 Subject: [PATCH] fix --- step-web/src/main/webapp/js/step.util.js | 1 + 1 file changed, 1 insertion(+) diff --git a/step-web/src/main/webapp/js/step.util.js b/step-web/src/main/webapp/js/step.util.js index 7a7b6c2e15..97118ff437 100644 --- a/step-web/src/main/webapp/js/step.util.js +++ b/step-web/src/main/webapp/js/step.util.js @@ -3947,6 +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) uniqueStrongArray.push(strongArray[j]); } var additionalPath = step.state.getCurrentVersion();