mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
ADIF field should be filled with null in case of failure
This commit is contained in:
parent
23f45ee5be
commit
8135924345
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
},
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue