Fix label click on like checkbox with non-uniq id

The label for the like checkbox was not clickable because the ID #like
was not unique on the website. The ID has been changed to like_check
to avoid that.
This commit is contained in:
Maciej Ziarkowski 2019-10-16 13:30:59 +01:00
parent f189ae603e
commit 9d4d24aefc

View File

@ -29,12 +29,12 @@ const LikeDataEntry: React.FunctionComponent<any> = (props) => { // TODO: remove
}
</p>
<input className="form-check-input" type="checkbox"
id="like" name="like"
id="like_check" name="like"
checked={!!props.building_like}
disabled={props.mode === 'view'}
onChange={props.onLike}
/>
<label htmlFor="like" className="form-check-label">
<label htmlFor="like_check" className="form-check-label">
I like this building and think it contributes to the city!
</label>
</Fragment>