Skip to content

Commit

Permalink
Remove heightBy from legends (temporarily hidden)
Browse files Browse the repository at this point in the history
  • Loading branch information
luisvasq committed Dec 3, 2024
1 parent b8f4742 commit 31eba8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/ui/views/map/FullLegend.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,8 @@ const LegendRowDetails = ({
/>
</Grid2>
)}
{heightBy != null && (
{/* FIXME: `heightBy` is temporarily hidden */}
{heightBy != null && false && (
<Grid2 size="grow">
<HeightLegend
valueRange={heightRange}
Expand Down
3 changes: 2 additions & 1 deletion src/ui/views/map/MinimalLegend.js
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ const LegendRowDetails = ({
onChangeSize={handleChangeSize}
/>
)}
{heightBy != null && (
{/* FIXME: `heightBy` is temporarily hidden */}
{heightBy != null && false && (
<HeightLegend
valueRange={heightRange}
{...{
Expand Down

0 comments on commit 31eba8a

Please sign in to comment.