king
2024-05-21 f0bf8c399c354c22227f8f1a76ed806098db59c0
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>
      </>
    )