we should hide the callsign empty warning if a callsign was entered

This commit is contained in:
HB9HIL
2024-11-13 10:58:42 +01:00
parent c084c8e48e
commit 5eb0104d5c

View File

@@ -568,6 +568,8 @@ function reset_fields() {
$("#callsign").on("focusout", function () {
if ($(this).val().length >= 3 && preventLookup == false) {
$("#noticer").fadeOut(1000);
// Temp store the callsign
var temp_callsign = $(this).val();