Skip to content

Commit

Permalink
Merge pull request #171 from bmschmidt/lowercase-search
Browse files Browse the repository at this point in the history
Lowercase search
  • Loading branch information
mnyrop committed Jul 19, 2023
2 parents 3ace69f + 79fbd7f commit eb6f8e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/search-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function getThumbnail(item, url) {
function displayResult(item, fields, url) {
var pid = item.pid;
var label = item.label || 'Untitled';
var link = item.permalink;
var link = item.permalink.toLowerCase();
var thumb = getThumbnail(item, url);
var meta = []

Expand Down

0 comments on commit eb6f8e4

Please sign in to comment.