From 0cb93406a87e960cc3ff08848dc4ac1e9bd1cbc6 Mon Sep 17 00:00:00 2001 From: Saurabh Shakya <42512860+Shakya47@users.noreply.github.com> Date: Sun, 14 Dec 2025 21:12:27 +0530 Subject: [PATCH] fix: added the missing quote for checkbox for issue (#64584) Co-authored-by: majestic-owl448 <26656284+majestic-owl448@users.noreply.github.com> --- .../68e9a6201e2efa142d62bfe1.md | 6 +++--- .../68e9a6bf1a74721a4e43e217.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/blocks/workshop-game-settings-panel/68e9a6201e2efa142d62bfe1.md b/curriculum/challenges/english/blocks/workshop-game-settings-panel/68e9a6201e2efa142d62bfe1.md index c137a1056e7..75c64feefdb 100644 --- a/curriculum/challenges/english/blocks/workshop-game-settings-panel/68e9a6201e2efa142d62bfe1.md +++ b/curriculum/challenges/english/blocks/workshop-game-settings-panel/68e9a6201e2efa142d62bfe1.md @@ -23,7 +23,7 @@ You should have a selector in your CSS of `input[type="checkbox"]`. assert.exists(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')); ``` -You should add a `width` property to your `input[type="checkbox]` selector. +You should add a `width` property to your `input[type="checkbox"]` selector. ```js assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.width); @@ -35,7 +35,7 @@ You should have a `width` property with a value of `20px`. assert.strictEqual(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.width, "20px"); ``` -You should add a `height` property to your `input[type="checkbox]` selector. +You should add a `height` property to your `input[type="checkbox"]` selector. ```js assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.height); @@ -47,7 +47,7 @@ You should have a `height` property with a value of `20px`. assert.strictEqual(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.height, "20px"); ``` -You should add a `cursor` property to your `input[type="checkbox]` selector. +You should add a `cursor` property to your `input[type="checkbox"]` selector. ```js assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.cursor); diff --git a/curriculum/challenges/english/blocks/workshop-game-settings-panel/68e9a6bf1a74721a4e43e217.md b/curriculum/challenges/english/blocks/workshop-game-settings-panel/68e9a6bf1a74721a4e43e217.md index 9a07512b23f..e3dac80ce6b 100644 --- a/curriculum/challenges/english/blocks/workshop-game-settings-panel/68e9a6bf1a74721a4e43e217.md +++ b/curriculum/challenges/english/blocks/workshop-game-settings-panel/68e9a6bf1a74721a4e43e217.md @@ -27,7 +27,7 @@ You should have an `appearance` property with a value of `none`. assert.strictEqual(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.appearance, "none"); ``` -You should add a `border` property to your `input[type="checkbox]` selector. +You should add a `border` property to your `input[type="checkbox"]` selector. ```js assert.isNotEmpty(new __helpers.CSSHelp(document).getStyle('input[type="checkbox"]')?.border);