awran5 / react-simple-star-rating

A simple react component for adding a star rating to your project.
https://react-simple-star-rating.vercel.app/
MIT License
136 stars 32 forks source link

Is there a way to turn off the hover alt text '18.75 out of 4' ? #32

Closed ching closed 2 years ago

ching commented 2 years ago

Hi there!

I would like to use this component and adjust the iconsCount to less than 5. However, the alt text is calculated as percentages by default. So instead of 3 out of 4 given iconsCount of 4, it displays as 18.75 out of 4 (which is quite confusing for the user).

image

Here is the code used:

<Rating
    onClick={handleRating2}
    transition
    iconsCount={4}
    size={50}
/>

Please advise! Thank you!

awran5 commented 2 years ago

Hi @ching

Just release a new v5.1.7 to fix this with an option to disable the title tag if you want.

<Rating allowTitleTag={false} {/* ... */ }/>

Please test and let me know.

Thank you.

ching commented 2 years ago

Confirmed that it is fixed - thanks!