(selectedInput: AlertInput)
| 496 | } |
| 497 | |
| 498 | private rbClick(selectedInput: AlertInput) { |
| 499 | for (const input of this.processedInputs) { |
| 500 | input.checked = input === selectedInput; |
| 501 | input.tabindex = input === selectedInput ? 0 : -1; |
| 502 | } |
| 503 | this.activeId = selectedInput.id; |
| 504 | safeCall(selectedInput.handler, selectedInput); |
| 505 | forceUpdate(this); |
| 506 | } |
| 507 | |
| 508 | private cbClick(selectedInput: AlertInput) { |
| 509 | selectedInput.checked = !selectedInput.checked; |
no test coverage detected