v1 Release
This commit is contained in:
@@ -22,7 +22,6 @@ const props = defineProps<{
|
||||
followStatus: string
|
||||
canEdit: boolean
|
||||
canView: boolean
|
||||
otherUsersOnFlight: string[]
|
||||
}>()
|
||||
</script>
|
||||
|
||||
@@ -44,11 +43,11 @@ 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 v-if="otherUsersOnFlight.length > 0">
|
||||
<DetailRows v-if="flight.other_users_on_flight.length > 0">
|
||||
<PanelLabel>Other Users On This Flight</PanelLabel>
|
||||
<div class="d-flex flex-wrap ga-2">
|
||||
<v-chip
|
||||
v-for="userName in otherUsersOnFlight"
|
||||
v-for="userName in flight.other_users_on_flight"
|
||||
:key="userName"
|
||||
:href="route('profile.view', userName)"
|
||||
color="primary"
|
||||
|
||||
Reference in New Issue
Block a user