private renderSection()

in web/rv-edit-screen.ts [113:131]


  private renderSection(section: Section) {
    return html`
      <tr>
        <td>
          <rv-filter-section
            .filter="${section.filter}"
            .reviewers="${section.reviewers}"
            .ccs="${section.ccs}"
            .reviewersUrl="${getReviewersUrl(this.repoName)}"
            .repoName="${this.repoName}"
            .pluginRestApi="${this.pluginRestApi}"
            .canModifyConfig="${this.canModifyConfig}"
            @reviewer-changed="${this.handleReviewerChanged}"
          >
          </rv-filter-section>
        </td>
      </tr>
    `;
  }