heithemmoumni/svelte-stars-rating

Component not re rendering when the value change

Opened this issue · 0 comments

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