render()

in src/app/personal-time-tracking-settings.js [69:86]


  render() {
    return (
      <ConfigurationForm
        warning={this.state.isConnectionError ? this.state.connectionError : ''}
        isInvalid={this.state.isConnectionError}
        isLoading={this.state.isLoading}
        onSave={this.onSubmitConfigurationForm}
        onCancel={this.props.onCancel}
      >
        <ServiceSelect
          placeholder={i18n('Select YouTrack')}
          selectedService={this.state.youTrack}
          serviceList={this.state.youTracks}
          onServiceSelect={this.changeYouTrack}
        />
      </ConfigurationForm>
    );
  }