Skip to content

Commit

Permalink
fix(web): classic infobox always shown for 3d tiles (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
airslice committed May 15, 2023
1 parent d77fcb3 commit a7a944c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/molecules/Visualizer/hooks.ts
Expand Up @@ -371,7 +371,7 @@ function useLayers({
infoboxKey: selectedLayer?.id,
title: layerOverridenInfobox?.title || selectedLayer?.title,
isEditable: !layerOverridenInfobox && !!selectedLayer?.infobox,
visible: !!selectedLayer?.infobox || !!layerOverridenInfobox,
visible: !!selectedLayer?.infobox,
layer: selectedLayer,
blocks,
}
Expand Down

0 comments on commit a7a944c

Please sign in to comment.