Skip to content

Commit

Permalink
fix: EGA-archive#42 fix search_data 404
Browse files Browse the repository at this point in the history
  • Loading branch information
ahornos authored May 15, 2023
1 parent 85a7791 commit 099fcab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ <h1 id="search">Search Results</h1>
this.field('author');
this.field('content');
});
$.getJSON('/search_data.json').then(function(search_data) {
$.getJSON('search_data.json').then(function(search_data) {
var idx = lunr(function() {
this.field('id');
this.field('title', { boost: 10 });
Expand Down

0 comments on commit 099fcab

Please sign in to comment.