Skip to content

Commit

Permalink
#373: only use group values in mapbox if mapbox group column(s) has b…
Browse files Browse the repository at this point in the history
…een specified
  • Loading branch information
aschonfeld committed Dec 23, 2020
1 parent 53c65e5 commit 0ec0212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dtale/dash_application/charts.py
Original file line number Diff line number Diff line change
Expand Up @@ -2280,7 +2280,7 @@ def build_mapbox(inputs, raw_data, layout):
props.map_val,
props.animate_by,
props.map_group,
group_val=props.group_val,
group_val=None if props.map_group is None else props.group_val,
)
if props.agg is not None:
data, agg_code = build_agg_data(
Expand Down

0 comments on commit 0ec0212

Please sign in to comment.