Merge pull request #3011 from sm6srw/decode-encoded-strings-in-dx-cluster-window

Decode encoded strings in dx cluster window
This commit is contained in:
Fabian Berg
2026-02-24 16:07:51 +01:00
committed by GitHub

View File

@@ -3420,9 +3420,9 @@ $(function() {
function updateModeButtonsForSubmodes() {
// Map mode to original tooltip translation
const modeTooltips = {
'cw': lang_bandmap_toggle_cw,
'digi': lang_bandmap_toggle_digi,
'phone': lang_bandmap_toggle_phone
'cw': decodeHtml(lang_bandmap_toggle_cw),
'digi': decodeHtml(lang_bandmap_toggle_digi),
'phone': decodeHtml(lang_bandmap_toggle_phone)
};
MODE_BUTTONS.forEach(btn => {