diff --git a/frontend/src/components/SettingsModal.tsx b/frontend/src/components/SettingsModal.tsx index 8bcd801..b1d0e1d 100644 --- a/frontend/src/components/SettingsModal.tsx +++ b/frontend/src/components/SettingsModal.tsx @@ -1012,10 +1012,14 @@ function FlexBandPanel({ bands }: { bands: string[] }) { ); }; + // The rule marking where band-driven settings end and mode-driven ones begin + // is drawn on the FIRST power cell, header and body alike. It used to be an + // extra empty cell in the body only, which gave the two rows different column + // counts and slid every heading one column left. const pwrCell = (b: string, kind: 'phone' | 'cw' | 'digi') => { const e = pwr[b.toUpperCase()] ?? { phone: 0, cw: 0, digi: 0 }; return ( -