king
2022-06-10 bf292de8879e2ce71696cb3ddc4dc8fa88d91a20
src/components/normalform/modalform/mkRadio/index.jsx
@@ -80,10 +80,10 @@
  }
  render() {
    const { value, options } = this.state
    const { value, options, config } = this.state
    return (
      <Radio.Group style={{whiteSpace: 'nowrap'}} value={value} onChange={this.onChange}>
      <Radio.Group style={{whiteSpace: 'nowrap'}} disabled={config.disabled} value={value} onChange={this.onChange}>
        {options.map(option => <Radio key={option.value} disabled={option.disabled} value={option.value}>{option.label}</Radio>)}
      </Radio.Group>
    )