king
2024-05-21 bcd80eb46e158d1daf7df735a4fb72a3221fa16e
src/tabviews/custom/components/module/voucher/resetRemark/index.jsx
@@ -37,7 +37,7 @@
  }
  render() {
    const { ID } = this.props
    const { ID, disabled } = this.props
    const { visible, remark } = this.state
    return (
@@ -52,7 +52,7 @@
          onCancel={() => { this.setState({ visible: false })}}
          destroyOnClose
        >
          <TextArea id={ID} defaultValue={remark} rows={6}/>
          <TextArea id={ID} disabled={disabled} defaultValue={remark} rows={6}/>
        </Modal>
      </>
    )