forgot to clear the table body when loading new qsos

这个提交包含在:
Peter Goodhall 2020-03-16 17:45:28 +00:00
父节点 84419c24ff
当前提交 453de173bf

查看文件

@ -911,12 +911,8 @@ $(document).ready(function(){
items.push( "<tr><td>" + item.COL_TIME_ON + "</td><td>" + item.COL_CALL + "</td><td>" + item.COL_MODE + "</td><td>" + item.COL_BAND + "</td></tr>" );
}
});
$( "<table>", {
"class": "my-new-list",
html: items.join( "" )
}).appendTo( "body" );
$("#grid_results tbody").empty();
$("#grid_results tbody").append(items.join( "" ));
});