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'm seeing this as well, seems that while the icon count was reduced the actual rating is still done 1-5. This means that the value returned is actually a fractional value. 2 out of three stars for example corresponds to 2/3 * 5 = 3.33 recurring.
To work around this issue I'm multiplying the rating by 5/9 and then Math.round()
First make sure that you added the allowFraction property to your element. When you use 3 starts the value or the rating must be from 0 to 3 so you can convert it using this equation: (value of rating from 0 to 5 / 5) * 3
I'm trying to set 3 start, but the value is 5.
In some cases, the stars are not marked
The text was updated successfully, but these errors were encountered: