You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am facing this issue whenever a rating value changes, the StarRating component not re rendering and only shows the previous rating styles.
Example: <script> let value = 1; setTimeout(() => { value = 3; }, 3000); </script> <StarRating rating={value}></StarRating>
I think you have to use reactive expression for the rating value inside your component. Thanks
The text was updated successfully, but these errors were encountered:
KamyarLajani
changed the title
Component not re rendering when the value changed
Component not re rendering when the value changes
Mar 13, 2021
KamyarLajani
changed the title
Component not re rendering when the value changes
Component not re rendering when the value change
Mar 13, 2021
I am facing this issue whenever a rating value changes, the StarRating component not re rendering and only shows the previous rating styles.
Example:
<script> let value = 1; setTimeout(() => { value = 3; }, 3000); </script> <StarRating rating={value}></StarRating>
I think you have to use reactive expression for the rating value inside your component. Thanks
The text was updated successfully, but these errors were encountered: