From 5ada45dc6004df6a82a503b1050374d1a4856ab2 Mon Sep 17 00:00:00 2001 From: Ilenia <26656284+ilenia-magoni@users.noreply.github.com> Date: Mon, 22 Sep 2025 17:11:41 +0200 Subject: [PATCH] refactor: semantic update to complaint form (#62255) --- .../67279fe50237291f80eed8b8.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/curriculum/challenges/english/blocks/lab-customer-complaint-form/67279fe50237291f80eed8b8.md b/curriculum/challenges/english/blocks/lab-customer-complaint-form/67279fe50237291f80eed8b8.md index 8d89746194b..eeedb24d2b2 100644 --- a/curriculum/challenges/english/blocks/lab-customer-complaint-form/67279fe50237291f80eed8b8.md +++ b/curriculum/challenges/english/blocks/lab-customer-complaint-form/67279fe50237291f80eed8b8.md @@ -264,7 +264,7 @@ const fieldset = document.getElementById("solutions-group"); assert.equal(fieldset.style.borderColor, "green"); ``` -When the form is submitted and all of the radio buttons from `#solutions-group` are in the unchecked state, you should set `#solutions-group`'s border color to `red`. +When all of the radio buttons from `#solutions-group` are in the unchecked state after a change event, you should set `#solutions-group`'s border color to `red`. ```js document.getElementById("refund").checked = false; @@ -498,11 +498,11 @@ try { -