Added hide suggestions if call.length<3

This commit is contained in:
int2001
2024-03-25 20:24:24 +00:00
parent 6bbb72ac06
commit 94f8a264f4

View File

@@ -1243,6 +1243,9 @@ $( document ).ready(function() {
$('.callsign-suggestions').text(scps.filter((call) => call.includes($(this).val().toUpperCase())).join(' '));
highlight(ccall.toUpperCase());
}
} else {
$('.callsign-suggest').hide();
scps=[];
}
});