()
| 7 | import { updateSettingsCwd } from './dir-picker.js'; |
| 8 | |
| 9 | function updateApprovalActive() { |
| 10 | document.querySelectorAll('#approval-options .settings-opt').forEach(el => { |
| 11 | el.classList.toggle('active', el.dataset.mode === approvalMode); |
| 12 | }); |
| 13 | } |
| 14 | |
| 15 | function updateThemeActive() { |
| 16 | document.querySelectorAll('#theme-options .settings-opt').forEach(el => { |
no outgoing calls
no test coverage detected