Skip to content

Commit

Permalink
Fix: fix filters in statistics.html
Browse files Browse the repository at this point in the history
  • Loading branch information
pietervdvn committed Oct 3, 2024
1 parent fb3bf98 commit 5048da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UI/BigComponents/Filterview.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
let layer: LayerConfig = filteredLayer.layerDef
let isDisplayed: UIEventSource<boolean> = filteredLayer.isDisplayed
let isDebugging = state.featureSwitches.featureSwitchIsDebugging
let isDebugging = state?.featureSwitches?.featureSwitchIsDebugging ?? new ImmutableStore(false)
/**
* Gets a UIEventSource as boolean for the given option, to be used with a checkbox
Expand Down

0 comments on commit 5048da5

Please sign in to comment.