From b542ded6f976809ec88445e7b04f2c81b900188e Mon Sep 17 00:00:00 2001 From: Stijn Peeters Date: Mon, 16 Sep 2024 14:13:14 +0200 Subject: [PATCH] Trailing slash in query results list --- webtool/static/js/fourcat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtool/static/js/fourcat.js b/webtool/static/js/fourcat.js index 7e0058fc3..950ba523e 100644 --- a/webtool/static/js/fourcat.js +++ b/webtool/static/js/fourcat.js @@ -497,7 +497,7 @@ const query = { applyProgress($('#query-status'), 100); let keyword = json.label; - $('#query-results').append('
  • ' + keyword + ' (' + json.rows + ' items)
  • '); + $('#query-results').append('
  • ' + keyword + ' (' + json.rows + ' items)
  • '); query.reset_form(); popup.alert('Query for \'' + keyword + '\' complete!', 'Success'); } else {