in web/rv-edit-screen.ts [76:104]
override render() {
return html`
<div>
<h3 class="heading-3">Reviewers Config</h3>
<table id="filterSections">
<tbody>
${this.renderEmpty()}
${this.loading
? html`<tr>
<td>Loading...</td>
</tr>`
: this.filterSections.map(s => this.renderSection(s))}
</tbody>
</table>
<div class="bottomButtons">
<gr-button
id="addFilterBtn"
@click="${this.handleCreateSection}"
?hidden="${!this.canModifyConfig || this.editingFilter}"
>
Add New Filter
</gr-button>
<gr-button id="closeButton" @click="${this.handleCloseTap}">
Close
</gr-button>
</div>
</div>
`;
}