From a1fa1d8751d67d39f0d68b1ae57b20b33be7de3b Mon Sep 17 00:00:00 2001 From: Ian Renton Date: Fri, 3 Oct 2025 20:57:29 +0100 Subject: [PATCH] Fix bug where bands with decimal points in didn't have their state properly restored --- webassets/js/code.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webassets/js/code.js b/webassets/js/code.js index 7a4f52a..c0cd51a 100644 --- a/webassets/js/code.js +++ b/webassets/js/code.js @@ -269,7 +269,7 @@ function generateBandsFilterCard(displayName, filterQuery, band_options) { // CSS doesn't like IDs with decimal points in, so we need to replace that in the same way as when we originally // queried the options endpoint and set our CSS. var cssFormattedBandName = o['name'] ? o['name'].replace('.', 'p') : "unknown"; - $p.append(` `); + $p.append(` `); }); $card_body.append($p); $card.append($card_body);