fix: Fix the disable property of check-box-group
Fix the disable property of check-box-group
Closes-Bug: #1990643
Change-Id: I9c178f8c9eeace68ebdae5991e44ddd73574d4af
(cherry picked from commit 6482bb0bdc
)
This commit is contained in:
@@ -68,7 +68,9 @@ export default class index extends Component {
|
||||
<Row>
|
||||
{options.map((opt) => (
|
||||
<Col span={span} key={opt.value}>
|
||||
<Checkbox value={opt.value}>{opt.label}</Checkbox>
|
||||
<Checkbox value={opt.value} disabled={!!opt.disabled}>
|
||||
{opt.label}
|
||||
</Checkbox>
|
||||
</Col>
|
||||
))}
|
||||
</Row>
|
||||
|
Reference in New Issue
Block a user