From 86a4fb57a9444d14cac4ccb2b01f02382992b906 Mon Sep 17 00:00:00 2001 From: Rico Sonntag Date: Wed, 27 Dec 2023 16:21:22 +0100 Subject: [PATCH] Update checkbox-inline.phtml Currently the Checkbox component cannot be properly used to save empty (unchecked status) settings. A hidden element is missing here, which is assigned the unchecked value. --- resources/views/components/checkbox-inline.phtml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/views/components/checkbox-inline.phtml b/resources/views/components/checkbox-inline.phtml index 048d2801787..79c3bab93c3 100644 --- a/resources/views/components/checkbox-inline.phtml +++ b/resources/views/components/checkbox-inline.phtml @@ -9,11 +9,13 @@ declare(strict_types=1); * @var string $label * @var string $name * @var string|null $value + * @var string $unchecked */ ?>
+