Skip to content

Commit

Permalink
Revert accidental merge change
Browse files Browse the repository at this point in the history
  • Loading branch information
maccabeelevine committed Dec 15, 2023
1 parent 538d4c5 commit 5b19c83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion themes/bootstrap3/templates/combined/results-list.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
template.innerHTML = "<span class='record-total'>(" + count + ")</span>";
const span = template.content.children[0];
const link = document.querySelector('.combined-jump-links .$classId');
const combinedJumpLinks = document.querySelector('.combined-jump-links');
const link = combinedJumpLinks?.querySelector('.$classId');
if (link) {
link.append(span);
link.style.display = "inline";
Expand Down

0 comments on commit 5b19c83

Please sign in to comment.