Skip to content

Commit

Permalink
Merge pull request #4815 from voxel51/bug-sidebar-groups
Browse files Browse the repository at this point in the history
Add date fields to primitives sidebar group
  • Loading branch information
brimoor authored Sep 18, 2024
2 parents 2623baa + eedfcba commit 93a7f3b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion fiftyone/core/odm/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
BooleanField,
ClassesField,
ColorField,
DateField,
DateTimeField,
DictField,
EmbeddedDocumentField,
Expand Down Expand Up @@ -583,7 +584,15 @@ def _parse_schema(
custom.append((name, paths))
elif isinstance(
field,
(ObjectIdField, IntField, FloatField, StringField, BooleanField),
(
ObjectIdField,
IntField,
FloatField,
StringField,
BooleanField,
DateField,
DateTimeField,
),
):
if frames:
other.append(name)
Expand Down

0 comments on commit 93a7f3b

Please sign in to comment.