From e4d78745af4f2fbe3bbe36816c1bdb16bb5bda77 Mon Sep 17 00:00:00 2001 From: dm5wk Date: Thu, 30 May 2024 17:58:52 +0200 Subject: [PATCH] fix download selection with filters --- band-plan.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/band-plan.html b/band-plan.html index 7040efc..9580d16 100644 --- a/band-plan.html +++ b/band-plan.html @@ -332,7 +332,7 @@ div>label { }); document.getElementById("download").addEventListener("click", () => { - let download_range = "all"; + let download_range = "active"; if (table.getSelectedRows().length > 0) { download_range = "selected"; }