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

React HotgraphicPopup error #331

Open
danielghost opened this issue Nov 18, 2024 · 0 comments · May be fixed by #332
Open

React HotgraphicPopup error #331

danielghost opened this issue Nov 18, 2024 · 0 comments · May be fixed by #332
Assignees
Labels

Comments

@danielghost
Copy link
Contributor

danielghost commented Nov 18, 2024

#328 introduced the following error when an item is clicked:

Warning: Received `false` for a non-boolean attribute `id`.

If you want to write it to the DOM, pass a string instead: id="false" or id={value.toString()}.

If you used to conditionally omit it with id={condition && value}, pass id={condition ? value : undefined} instead. Error Component Stack

This is resolved by following the error instructions with:

id={_isActive ? 'notify-heading': undefined}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Needs Reviewing
Development

Successfully merging a pull request may close this issue.

1 participant