From 9d4d24aefc34bce753ed1a766aca23c427d7f9ae Mon Sep 17 00:00:00 2001 From: Maciej Ziarkowski Date: Wed, 16 Oct 2019 13:30:59 +0100 Subject: [PATCH] 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. --- app/src/frontend/building/data-components/like-data-entry.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/frontend/building/data-components/like-data-entry.tsx b/app/src/frontend/building/data-components/like-data-entry.tsx index 201f6e83..1e2c7c0c 100644 --- a/app/src/frontend/building/data-components/like-data-entry.tsx +++ b/app/src/frontend/building/data-components/like-data-entry.tsx @@ -29,12 +29,12 @@ const LikeDataEntry: React.FunctionComponent = (props) => { // TODO: remove }

-