mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-02-04 01:04:33 +00:00
Fix handling new spots by SSE when there weren't any others #3
This commit is contained in:
@@ -51,7 +51,9 @@ function restartSSEConnection() {
|
|||||||
}
|
}
|
||||||
// If we had zero spots before (i.e. one now), the table will have a "No spots" row that we need to remove now
|
// If we had zero spots before (i.e. one now), the table will have a "No spots" row that we need to remove now
|
||||||
// that we have one.
|
// that we have one.
|
||||||
$("#table tbody tr").last().remove();
|
if (spots.length == 1) {
|
||||||
|
$("#table tbody tr").last().remove();
|
||||||
|
}
|
||||||
|
|
||||||
// Add the new spot to table
|
// Add the new spot to table
|
||||||
addSpotToTopOfTable(newSpot, true);
|
addSpotToTopOfTable(newSpot, true);
|
||||||
|
|||||||
Reference in New Issue
Block a user