mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-25 03:31:13 +00:00
ADIF field should be filled with null in case of failure
This commit is contained in:
@@ -177,7 +177,7 @@ function qso_edit(id) {
|
||||
document.getElementById("distance").value = data;
|
||||
},
|
||||
error: function() {
|
||||
document.getElementById("distance").value = 'Error calculating distance!';
|
||||
document.getElementById("distance").value = null;
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
@@ -863,7 +863,7 @@ $("#locator").keyup(function(){
|
||||
document.getElementById("distance").value = data;
|
||||
},
|
||||
error: function() {
|
||||
document.getElementById("distance").value = 'Error calculating distance!';
|
||||
document.getElementById("distance").value = null;
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user