hotfix Quality survey button interaction (#1091)

Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
Timo 2023-06-07 17:12:24 +02:00 committed by GitHub
parent 8f8dd5f803
commit efc25fd4ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,7 +60,7 @@ export function StarRatingInput({
<label
className={styles.hideElement}
id={"starInvisibleLabel" + String(index)}
htmlFor={String(index)}
htmlFor={"starInput" + String(index)}
>
{t("{{count}} stars", {
count: index,
@ -69,7 +69,7 @@ export function StarRatingInput({
<label
className={styles.starIcon}
id={"starIcon" + String(index)}
htmlFor={String(index)}
htmlFor={"starInput" + String(index)}
>
{index <= (hover || rating) ? (
<StarSelected />