Add dx_call_includes filter input on web UI

This commit is contained in:
Ian Renton
2025-10-31 17:52:29 +00:00
parent 04435e770a
commit 3964134db9
2 changed files with 7 additions and 0 deletions

View File

@@ -20,6 +20,9 @@ function buildQueryString() {
}
});
str = str + "limit=" + $("#spots-to-fetch option:selected").val();
if ($("#filter-dx-call").val() != "") {
str = str + "&dx_call_includes=" + encodeURIComponent($("#filter-dx-call").val());
}
return str;
}