react-vnc-display icon indicating copy to clipboard operation
react-vnc-display copied to clipboard

Update componentWillUpdate to componentDidUpdate

Open fabdrol opened this issue 4 years ago • 0 comments

componentWillReceiveProps(nextProps) {
    if (!this.rfb) {
      return;
    }

    if (nextProps.scale !== this.props.scale) {
      this.rfb.get_display().set_scale(nextProps.scale || 1);
      this.get_mouse().set_scale(nextProps.scale || 1);
    }
  }

This method is deprecated by React Team.

fabdrol avatar Jun 18 '20 11:06 fabdrol