diff options
Diffstat (limited to 'bh20simplewebuploader')
-rw-r--r-- | bh20simplewebuploader/static/map.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bh20simplewebuploader/static/map.js b/bh20simplewebuploader/static/map.js index 5ecf95d..1003f7d 100644 --- a/bh20simplewebuploader/static/map.js +++ b/bh20simplewebuploader/static/map.js @@ -42,7 +42,7 @@ function updateMapMarkers(data) { [lon, lat] = coordinates.map(parseFloat); let point = L.point() marker = (L.marker([lat, lon])); - marker.bindPopup("<b>" + label + "</b><br/>" + "FastaCount: " +fastaCount); + marker.bindPopup("<b>" + label + "</b><br/>" + "SARS-CoV-2<br/>sequences: " +fastaCount); markers.addLayer(marker); } } |