The bug I noticed in IF Filters Popup has still not been fixed. Namely, in the /frontend/src/App.svelte file.
The following code edit is proposed:
lines
{:else if newbandwidth == 4500}4.5
kHz
{:else if newbandwidth == 5000}5.0
kHz
replace the lines with
{:else if newbandwidth == 6000}6.0
kHz
{:else if newbandwidth == 9000}9.0
kHz
After this edit, the appropriate labels will appear on the 6.0 кHz and 9 kHz buttons.
Thanks Andy; I'll make that change today.