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

Components re-rendering multiple times when they ony need to render once #475

Open
Zander1983 opened this issue Mar 16, 2022 · 0 comments
Open
Assignees

Comments

@Zander1983
Copy link
Owner

Description

Directly under function Plot() { add console.log("props.plotIndex is ", props.plotIndex);
Go to an experiment with 3 files - you should see:

props.plotIndex is  0-0
props.plotIndex is  1-0
props.plotIndex is  2-0

instead you see:

props.plotIndex is 0-0
props.plotIndex is 1-0
props.plotIndex is 2-0
props.plotIndex is 0-0
props.plotIndex is 1-0
props.plotIndex is 2-0
props.plotIndex is 0-0
props.plotIndex is 1-0
props.plotIndex is 2-0
props.plotIndex is 0-0
props.plotIndex is 1-0
props.plotIndex is 2-0
props.plotIndex is 0-0
props.plotIndex is 1-0
props.plotIndex is 2-0

Expected Time:

Acceptance Criteria

  • [ ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants