Skip to content

Commit

Permalink
Trailing slash in query results list
Browse files Browse the repository at this point in the history
  • Loading branch information
stijn-uva committed Sep 16, 2024
1 parent a4bddae commit b542ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webtool/static/js/fourcat.js
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ const query = {
applyProgress($('#query-status'), 100);
let keyword = json.label;

$('#query-results').append('<li><a href="../results/' + json.key + '">' + keyword + ' (' + json.rows + ' items)</a></li>');
$('#query-results').append('<li><a href="../results/' + json.key + '/">' + keyword + ' (' + json.rows + ' items)</a></li>');
query.reset_form();
popup.alert('Query for \'' + keyword + '\' complete!', 'Success');
} else {
Expand Down

0 comments on commit b542ded

Please sign in to comment.