(isOpen: boolean)
| 266 | } |
| 267 | |
| 268 | function updateSettingsPanel(isOpen: boolean): void { |
| 269 | if (!settingsPanel || !toggleSettingsButton) { |
| 270 | return |
| 271 | } |
| 272 | |
| 273 | settingsPanel.hidden = !isOpen |
| 274 | toggleSettingsButton.dataset.active = isOpen ? 'true' : 'false' |
| 275 | } |
| 276 | |
| 277 | function updateSourceRow(): void { |
| 278 | if (!currentPayload) { |
no outgoing calls
no test coverage detected