Web: Components: Checkbox: Added missing name prop

This commit is contained in:
Dmitry Kulak 2022-02-10 14:27:05 +03:00
parent 4c97527dda
commit 0ff2975d24

View File

@ -73,6 +73,7 @@ class Checkbox extends React.Component {
value,
title,
truncate,
name,
} = this.props;
return (
@ -91,6 +92,7 @@ class Checkbox extends React.Component {
ref={this.ref}
value={value}
onChange={this.onInputChange}
name={name}
/>
<RenderCheckboxIcon {...this.props} />
{this.props.label && (