mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Fix mistake introduced in previous commit.
Debugging code incorrectly reverted.
This commit is contained in:
parent
811f46c289
commit
980d8f3092
@ -40,7 +40,7 @@ function FlightPlanPath(props: FlightPlanProps) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const WaypointMarkers = (props: FlightPlanProps) => {
|
const WaypointMarkers = (props: FlightPlanProps) => {
|
||||||
if (props.selected && props.flight.waypoints == null) {
|
if (!props.selected || props.flight.waypoints == null) {
|
||||||
return <></>;
|
return <></>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user