render()

in widgets/distribution-reports/src/app/distribution-report-form.js [403:433]


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

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