({data, indent, prefix}, {shown})
| 297 | } |
| 298 | |
| 299 | render({data, indent, prefix}, {shown}) { |
| 300 | const exp = this.expando(data) ? html`<span class=caret onClick=${() => this.click()} >${caret(shown)} </span>` : ""; |
| 301 | const headline = this.renderHeadline(data); |
| 302 | const body = shown ? this.renderBody(indent, data) : ""; |
| 303 | return html`${indent}${exp}${prefix}${headline}${body}`; |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | function ZipContentsSection({model: {zip_files}}) { |
nothing calls this directly
no test coverage detected