From 73ebd74f1fff289dd95819cb6a2cdeef9b0aa516 Mon Sep 17 00:00:00 2001 From: Alex <52292902+alexrudd2@users.noreply.github.com> Date: Thu, 26 Oct 2023 12:42:04 -0500 Subject: [PATCH] fix: disable layer select UI while plotting (#192) --- src/ui.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui.tsx b/src/ui.tsx index f102fe1..5ab468f 100644 --- a/src/ui.tsx +++ b/src/ui.tsx @@ -781,6 +781,7 @@ function LayerSelector({state}: {state: State}) { value={[...selectedLayers]} onChange={layersChanged} size={3} + disabled={state.progress != null} > {layers.map((layer) => )}