Skip to content

Commit

Permalink
fix: destination name > country_name
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Jan 17, 2025
1 parent 14324a5 commit a4315ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Authenticated/FlightRoute.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const flightrouteRow = computed((): Array<TFlightRouteRow> => {
icao: props.flightroute.destination.icao_code,
iata: props.flightroute.destination.iata_code,
name: props.flightroute.destination.name,
country_name: props.flightroute.destination.name,
country_name: props.flightroute.destination.country_name,
municipality: props.flightroute.destination.municipality
}
];
Expand Down

0 comments on commit a4315ca

Please sign in to comment.