From fc8e69b5deeab85b781fba095599795154f76087 Mon Sep 17 00:00:00 2001 From: Matt-Yorkley <9029026+Matt-Yorkley@users.noreply.github.com> Date: Fri, 30 Jul 2021 16:50:34 +0100 Subject: [PATCH] Fix platform terms of service checkbox --- app/views/checkout/_platform_terms_of_service.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/checkout/_platform_terms_of_service.html.haml b/app/views/checkout/_platform_terms_of_service.html.haml index 8f2cb03096..07b85b734f 100644 --- a/app/views/checkout/_platform_terms_of_service.html.haml +++ b/app/views/checkout/_platform_terms_of_service.html.haml @@ -1,4 +1,4 @@ %p - %input{ type: "checkbox", id: "platform_tos_accepted", ng: { model: "platform_tos_accepted", init: "platform_tos_accepted = #{platform_tos_already_accepted?}" } } + %input{ type: "checkbox", id: "accept_terms", ng: { model: "platform_tos_accepted", init: "platform_tos_accepted = #{platform_tos_already_accepted?}" } } %label.small{for: "platform_tos_accepted"} = t(".message_html", tos_link: link_to_platform_terms)