Fix precision when displaying reviews
This commit is contained in:
parent
8491fb7096
commit
f26d7c08e3
|
@ -77,7 +77,11 @@ function ShowReviews({ reviews }: ShowReviewsProps) {
|
|||
{review.content}
|
||||
</Typography>
|
||||
|
||||
<Rating value={review.rating} readOnly />
|
||||
<Rating
|
||||
value={review.rating}
|
||||
readOnly
|
||||
precision={0.5}
|
||||
/>
|
||||
</>
|
||||
}
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue