king
2022-02-09 d59f518f466274b2caeb2e01c10c92deafe7c93b
src/components/normalform/modalform/mkRadio/index.jsx
@@ -4,7 +4,6 @@
import { Radio } from 'antd'
import MKEmitter from '@/utils/events.js'
import './index.scss'
class MKRadio extends Component {
  static propTpyes = {
@@ -85,7 +84,7 @@
    return (
      <Radio.Group style={{whiteSpace: 'nowrap'}} value={value} onChange={this.onChange}>
        {options.map(option => <Radio key={option.value} value={option.value}>{option.label}</Radio>)}
        {options.map(option => <Radio key={option.value} disabled={option.disabled} value={option.value}>{option.label}</Radio>)}
      </Radio.Group>
    )
  }