Fixed #1320 - Checkbox true-value / false-value does not work

This commit is contained in:
Cagatay Civici 2021-08-25 09:48:02 +03:00
parent b13d8d517f
commit 3a854247be
4 changed files with 37 additions and 3 deletions

View file

@ -28,6 +28,18 @@ const CheckboxProps = [
type: "any",
default: "null",
description: "Inline of the component."
},
{
name: "trueValue",
type: "any",
default: "true",
description: "Value in checked state."
},
{
name: "falseValue",
type: "any",
default: "true",
description: "Value in unchecked state."
}
];