Skip to content
Snippets Groups Projects
Commit a0fd9553 authored by Beatrycze Volk's avatar Beatrycze Volk
Browse files

Fix publication time and APC max filtering

parent f890a849
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,7 @@ $(document).ready(function () {
});
$(document).on('input change', '#input-publication-time-max', function () {
const publicationTimeMax = $(this).val();
publicationTimeMax = $(this).val();
const label = $("#label-publication-time-max");
const labelParts = label.text().split(' ');
label.empty();
......@@ -107,7 +107,7 @@ $(document).ready(function () {
});
$(document).on('input change', '#input-apc-max', function () {
const apcMax = $(this).val();
apcMax = $(this).val();
const label = $("#label-apc-max");
const labelParts = label.text().split(' ');
label.empty();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment