Dennis
Results
2
comments of
Dennis
` BUTTON: (element: HTMLInputElement) => ({ value: element.value, checked: element.checked }),` I found that when adding `checked: element.checked`, a TypeScript error appears stating that "Property 'checked' does not exist on...
Proposed change: `INPUT: (element: HTMLInputElement) => ({ value: element.value, checked: element.checked })` Since the issue is referred to the checkboxes needing a `checked` attribute, I believe this may fix it...