1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-16 21:05:28 +03:00
This commit is contained in:
breadoven 2021-10-16 17:04:55 +01:00
parent 3d1fcca7bb
commit 5fd7fbd4d5
2 changed files with 2 additions and 2 deletions

View file

@ -72,7 +72,7 @@ let WaypointCollection = function () {
}; };
self.isEmpty = function () { self.isEmpty = function () {
return data == []; return data.length == 0;
}; };
self.flush = function () { self.flush = function () {

View file

@ -975,8 +975,8 @@ TABS.mission_control.initialize = function (callback) {
map.addLayer(addWaypointMarker(element)); map.addLayer(addWaypointMarker(element));
} }
}); });
repaintLine4Waypoints(mission);
} }
repaintLine4Waypoints(mission);
} }
function redrawLayer() { function redrawLayer() {