Updated Map View

This commit is contained in:
2026-06-20 22:21:17 +10:00
parent 6fad966b7e
commit 05ca994253
52 changed files with 2038 additions and 803 deletions
+3 -3
View File
@@ -20,11 +20,13 @@ const props = defineProps<{
flightCount: number
isFollowing: boolean
canEdit: boolean
canView: boolean
}>()
</script>
<template>
<ProfileLayout
:canView="canView"
:user="user"
:is-following="isFollowing"
:flight-count="flightCount"
@@ -39,9 +41,7 @@ const props = defineProps<{
<RoutePanel :flight="flight" />
<Panel label="Flight Details">
<BoardingPass :user="user" :showToolTips="false" style="width:100%;max-width:600px; margin:0 auto" :flight="flight" :canEdit="canEdit" />
<DetailRows>
</DetailRows>
<DetailRows/>
</Panel>
<AircraftPanel :flight="flight"/>
<AirportPanel :airport="flight.departure_airport" label="Departure" />