Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix dataset group slice is not being used on launch_app #4423

Merged
merged 2 commits into from
May 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions fiftyone/core/session/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
| `voxel51.com <https://voxel51.com/>`_
|
"""

from collections import defaultdict
from dataclasses import asdict
imanjra marked this conversation as resolved.
Show resolved Hide resolved
from functools import wraps
Expand Down Expand Up @@ -417,6 +418,7 @@ def __init__(
view_name=final_view_name,
spaces=spaces,
color_scheme=build_color_scheme(color_scheme, dataset, config),
group_slice=(dataset.group_slice if dataset else None),
)
self._client = fosc.Client(
address=address,
Expand Down
Loading