-
Notifications
You must be signed in to change notification settings - Fork 605
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
Modal tagging fixes #5514
base: release/v1.3.1
Are you sure you want to change the base?
Modal tagging fixes #5514
Conversation
WalkthroughThis pull request introduces modifications to two components. In the core modal component, a Changes
Sequence Diagram(s)sequenceDiagram
participant C as Component
participant UL as useLooker
participant SR as sampleRef
participant L as Looker
C->>UL: Render with sample, colorScheme
UL->>SR: Update current with sample data
UL->>UL: Execute useMemo (using SR.current)
alt On colorScheme or looker change
UL->>L: Call updateSample(sample.sample)
end
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (2)
🧰 Additional context used📓 Path-based instructions (1)`**/*.{ts,tsx}`: Review the Typescript and React code for co...
⏰ Context from checks skipped due to timeout of 90000ms (7)
🔇 Additional comments (4)
✨ Finishing Touches
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
What changes are proposed in this pull request?
Fixes a regression that recreates looker instances after tagging. Recreating the instance means "resetting" all state for the user, e.g. resetting playback for video, or any zoom level
Also removes an incorrect
detach_frames
flag for the updated samples tagging response. Fixes a blank first frame issue after tagging (see "Before" recording)Before
Screen.Recording.2025-02-24.at.1.32.42.PM.mov
After
Screen.Recording.2025-02-24.at.1.32.18.PM.mov
How is this patch tested? If it is not, please explain why.
Locally
Release Notes
What areas of FiftyOne does this PR affect?
fiftyone
Python library changesSummary by CodeRabbit