(msg, tone = 'muted')
| 1830 | ''; |
| 1831 | |
| 1832 | const setStatus = (msg, tone = 'muted') => { |
| 1833 | if (!statusEl) return; |
| 1834 | statusEl.className = `text-${tone} small`; |
| 1835 | statusEl.textContent = msg || ''; |
| 1836 | }; |
| 1837 | |
| 1838 | const setSavingState = (saving, message) => { |
| 1839 | if (saveBtn) { |
no outgoing calls
no test coverage detected