Skip to content

Commit

Permalink
fix isSingle check
Browse files Browse the repository at this point in the history
  • Loading branch information
juandjara committed Mar 7, 2024
1 parent 4a4812a commit 6715362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-ui/src/widgets/legend/LegendWidgetUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function LegendWidgetUI({
</Tooltip>
);

if (isSingle) {
if (isSingle && !isMobile) {
return (
<LegendRoot sx={sx} elevation={3} collapsed={collapsed || isMobile}>
<LegendContent>
Expand Down

0 comments on commit 6715362

Please sign in to comment.