render()

in packages/issue-dashboard-widgets/widgets/distribution-reports/app/distribution-report-form.js [404:434]


  render() {
    const {
      report, disabled
    } = this.state;

    return (
      <div className="ring-form">
        {
          !disabled && (
            <StandardFormGroup
              label={'Name'}
              inputCompensationHack
            >
              <Input
                size={InputSize.FULL}
                value={report.name}
                placeholder={i18n('Report name')}
                onChange={this.changeReportName}
                compact
              />
            </StandardFormGroup>
          )}
        {this.renderProjectsSelectorBlock()}
        {this.renderFilterIssuesBlock()}
        {this.renderIssueDistributionFieldsBlock()}
        {this.renderAggregationPolicyBlock()}
        {this.renderVisibleToBlock()}
        {this.renderUpdateableByBlock()}
      </div>
    );
  }