Ui fixes #16
@@ -4,6 +4,7 @@ import FlightMap from "@/Components/FlightsGoneBy/FlightMap.vue";
|
|||||||
import Panel from "@/Components/FlightsGoneBy/Panels/Panel.vue";
|
import Panel from "@/Components/FlightsGoneBy/Panels/Panel.vue";
|
||||||
import DetailRows from "@/Components/FlightsGoneBy/Panels/DetailRows.vue";
|
import DetailRows from "@/Components/FlightsGoneBy/Panels/DetailRows.vue";
|
||||||
import DetailRow from "@/Components/FlightsGoneBy/Panels/DetailRow.vue";
|
import DetailRow from "@/Components/FlightsGoneBy/Panels/DetailRow.vue";
|
||||||
|
import PanelLabel from "@/Components/FlightsGoneBy/Panels/PanelLabel.vue";
|
||||||
|
|
||||||
defineProps<{
|
defineProps<{
|
||||||
flight: Flight
|
flight: Flight
|
||||||
@@ -19,6 +20,10 @@ defineProps<{
|
|||||||
<DetailRow label="Distance" :value="flight.distance + 'km'" />
|
<DetailRow label="Distance" :value="flight.distance + 'km'" />
|
||||||
<DetailRow label="Duration" :value="flight.duration_display" />
|
<DetailRow label="Duration" :value="flight.duration_display" />
|
||||||
</DetailRows>
|
</DetailRows>
|
||||||
|
<DetailRows>
|
||||||
|
<PanelLabel v-if="flight.note?.length">Notes</PanelLabel>
|
||||||
|
{{flight.note}}
|
||||||
|
</DetailRows>
|
||||||
</Panel>
|
</Panel>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user