Closed lieferbaer closed 4 years ago
link: https://qwrqwr.de/productListing/delivery/76133/Kaiserallee%201,%2076133%20Karlsruhe/2
click to rated star in the middle.
get node_modules/react-star-ratings/build/star-ratings.js:136
133 | var hoveredRating = this.state.highestStarHovered; 134 | var currentRating = hoveredRating > 0 ? hoveredRating : selectedRating; 135 | // fix it at 2 decimal places and remove trailing 0s
136 | var formattedRating = parseFloat(currentRating.toFixed(2)).toString(); | ^ 137 | if (Number.isInteger(currentRating)) { 138 | formattedRating = String(currentRating); 139 | }
The rating you are passing as a prop must be integer. Use parseFloat(your_rating) as rating prop.
link: https://qwrqwr.de/productListing/delivery/76133/Kaiserallee%201,%2076133%20Karlsruhe/2
get node_modules/react-star-ratings/build/star-ratings.js:136
133 | var hoveredRating = this.state.highestStarHovered; 134 | var currentRating = hoveredRating > 0 ? hoveredRating : selectedRating; 135 | // fix it at 2 decimal places and remove trailing 0s