()
| 569 | } |
| 570 | |
| 571 | private renderAlertInputs() { |
| 572 | switch (this.inputType) { |
| 573 | case 'checkbox': |
| 574 | return this.renderCheckbox(); |
| 575 | case 'radio': |
| 576 | return this.renderRadio(); |
| 577 | default: |
| 578 | return this.renderInput(); |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | private renderCheckbox() { |
| 583 | const inputs = this.processedInputs; |
no test coverage detected