Number of spots must be at least 1 spot to render/update

这个提交包含在:
int2001 2023-07-21 10:24:21 +00:00
父节点 dc7abe462f
当前提交 1dc278847c

查看文件

@ -130,7 +130,7 @@ $(function() {
dataType: "json"
}).done(function(dxspots) {
spots4chart=[];
if (dxspots.length>1) {
if (dxspots.length>0) {
dxspots.sort(SortByQrg);
dxspots=reduce_spots(dxspots);
dxspots.forEach((single) => {
@ -152,7 +152,7 @@ $(function() {
dataType: "json"
}).done(function(dxspots) {
spots4chart=[];
if (dxspots.length>1) {
if (dxspots.length>0) {
dxspots.sort(SortByQrg);
dxspots=reduce_spots(dxspots);
dxspots.forEach((single) => {