Skip to content
This repository was archived by the owner on Dec 12, 2022. It is now read-only.

Commit 4e0ed35

Browse files
committed
Fix the updating of boolean properties
1 parent af59ec4 commit 4e0ed35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/elements/values/KeyValueElement.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export default class KeyValueElement extends LitElement {
206206
value = target.value ? cssStringToHexNumber(target.value) : 0;
207207
dataType = 'color';
208208
break;
209-
case 'checkbox':
209+
case 'boolean':
210210
value = !!target.checked;
211211
dataType = 'boolean';
212212
break;

0 commit comments

Comments
 (0)