king
2021-07-05 41e2d4b6af42302bb37bb54394a489e017c0de4f
src/menu/components/share/sourcecomponent/index.jsx
@@ -14,12 +14,23 @@
  }
  state = {
    url: this.props.value,
    url: '',
    visible: ''
  }
  UNSAFE_componentWillMount () {
    const { value } = this.props
    let val = ''
    if (value) {
      val = value
    } else if (this.props['data-__meta']) {
      val = this.props['data-__meta'].initialValue || ''
    }
    this.setState({
      url: val,
    })
  }
  shouldComponentUpdate (nextProps, nextState) {