Skip to content

Commit

Permalink
Merge pull request #4864 from voxel51/bugfix/summary_field_operator
Browse files Browse the repository at this point in the history
Small bug fix for Numerical Field in Summary Field Operator
  • Loading branch information
brimoor authored Sep 28, 2024
2 parents f5cdc88 + a38596d commit 543ecf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fiftyone/operators/builtin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1255,7 +1255,7 @@ def _create_summary_field_inputs(ctx, inputs):
group_by_keys = sorted(p for p in schema if p.startswith(group_prefix))
group_by_selector = types.AutocompleteView()
for group in group_by_keys:
group_by_selector.add_choice(group.name, label=group.name)
group_by_selector.add_choice(group, label=group)

inputs.enum(
"group_by",
Expand Down

0 comments on commit 543ecf3

Please sign in to comment.