Skip to content

Commit

Permalink
Fix collection value check
Browse files Browse the repository at this point in the history
  • Loading branch information
iccole committed Feb 5, 2025
1 parent 9ad9c80 commit 8509580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pn-site/js/guidesearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ $(document).ready(
// control itself
if(hidden.getAttribute("name") == "COLLECTION"){

var collvalue = $("select[name='COLLECTION']").attr("value");
var collvalue = $("select[name='COLLECTION']").prop("value");
if(collvalue != "default"){

filteredels.push($("select[name='COLLECTION']"));
Expand Down

0 comments on commit 8509580

Please sign in to comment.