-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Error since I updated to 0.1.10: React does not recognize the hasStriped
prop on a DOM element
#122
Comments
hasStriped
prop on a DOM element
@matt-grain Hi is this when you just update your current project creating a new project doesn't have this issue right |
Maybe |
Yeah this is what I thought, I tried that but still here. So I'll recreate a project from scratch! No issue |
Actually you may need to delete your |
I tried that too. Not better. Let me try to recreate it right now. |
So even with a new project, the same error appears |
Are you using has_striped anywhere or can you paste some of your code |
EDIT Here is my code: pc.vstack(
pc.progress(
value=AppState.get_current_question_id / 5 * 100,
width="100%",
height="1.3em",
border_radius="25px",
bg="lightblue",
is_animated=True,
has_striped=True,
is_indeterminate=AppState.started == False,
),
spacing="1em",
min_width=["10em", "40em"],
), |
Ok I'll try and debug this in the meantime maybe go back to the last release and continue your development. Thanks for pointing this out |
This error is not fatal, appears in the logs and browser console but doesn't prevent the application to run. So nothing critical :) |
Ah you were right, it was the progress bar: pc.vstack(
pc.progress(
value=AppState.get_current_question_id / 5 * 100,
width="100%",
height="1.3em",
border_radius="25px",
bg="lightblue",
is_animated=True,
has_striped=True,
is_indeterminate=AppState.started == False,
),
spacing="1em",
min_width=["10em", "40em"],
), I removed has_striped and no error anymore |
Try has_stripe not has_striped |
Ill update the docs |
ah better. But... what |
It should make the progress bar striped Ill update this component so in the next release it works as intended |
Fixed this issue in this pr should be fixed on the next release #159 |
Hi,
I updated today my project from 0.1.8 to 0.1.10 and now I have this error but I don't understand where it comes from
Any hint on how to debug it ?
Thanks !
The text was updated successfully, but these errors were encountered: