From aece9234155552a1f29981c067d9692e09ad51d1 Mon Sep 17 00:00:00 2001 From: Beatrycze Volk <beatrycze.volk@slub-dresden.de> Date: Thu, 17 Oct 2024 14:20:17 +0200 Subject: [PATCH] Fix keywords filtering --- Resources/Public/JavaScript/Recommender/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Public/JavaScript/Recommender/main.js b/Resources/Public/JavaScript/Recommender/main.js index ff1433d..ac9aa25 100644 --- a/Resources/Public/JavaScript/Recommender/main.js +++ b/Resources/Public/JavaScript/Recommender/main.js @@ -78,7 +78,7 @@ $(document).ready(function () { }); $(".form-check-input").bind('change', function () { - if ($(this).attr('id') != 'checkbox-author-rights') {gi + if ($(this).attr('id') != 'checkbox-author-rights') { if ($(this).is(':checked')) { checkedKeywords.push($(this).val()); } -- GitLab