Updated Map View
This commit is contained in:
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user