Skip to content

Commit

Permalink
Add a semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Nov 2, 2024
1 parent 10dd0e2 commit 9e3690b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion step-web/src/main/webapp/js/search_selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -2407,7 +2407,7 @@ step.searchSelect = {
else if (typeof searchType !== "undefined") currentSearch = URL_SEPARATOR + searchType + '=' + searchWord;
var joins = "";
if (previousJoinString !== "") {
joins = URL_SEPARATOR + "srchJoin="
joins = URL_SEPARATOR + "srchJoin=";
if (currentSearch === "") joins += previousJoinString;
else if (numOfSearches > 1) {
if (searchJoinsForMultipleStrongs === "") joins += previousJoinString + currentJoin + numOfSearches;
Expand Down

0 comments on commit 9e3690b

Please sign in to comment.