componentWillReceiveProps()

in src/app/personal-time-tracking-settings.js [33:42]


  componentWillReceiveProps(props) {
    if (props.youTracks) {
      this.setState({
        youTracks: props.youTracks
      });
    }
    if (props.youTrack) {
      this.changeYouTrack(props.youTrack);
    }
  }