Merge pull request #2397 from int2001/dxlookup_fix

Reset-fields before adding the spot (when fetched)
这个提交包含在:
Peter Goodhall 2023-08-10 16:07:30 +01:00 提交者 GitHub
当前提交 d2b5e24115
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -951,6 +951,7 @@ $(document).on('keypress',function(e) {
$("#check_cluster").on("click", function() {
$.ajax({ url: dxcluster_provider+"/qrg_lookup/"+$("#frequency").val()/1000, cache: false, dataType: "json" }).done(
function(dxspot) {
reset_fields();
$("#callsign").val(dxspot.spotted);
$("#callsign").trigger("blur");
}