LOA integration

This commit is contained in:
2025-12-13 01:24:25 -05:00
parent 82eb6b7bbf
commit 93e8f3b3d2

View File

@@ -32,6 +32,7 @@ import {
getLocalTimeZone, getLocalTimeZone,
} from "@internationalized/date" } from "@internationalized/date"
import { el } from "@fullcalendar/core/internal-common"; import { el } from "@fullcalendar/core/internal-common";
import MemberCard from "../members/MemberCard.vue";
const props = defineProps<{ const props = defineProps<{
adminMode?: boolean adminMode?: boolean
@@ -146,7 +147,7 @@ async function commitExtend() {
<TableBody> <TableBody>
<TableRow v-for="post in LOAList" :key="post.id" class="hover:bg-muted/50"> <TableRow v-for="post in LOAList" :key="post.id" class="hover:bg-muted/50">
<TableCell class="font-medium"> <TableCell class="font-medium">
{{ post.name }} <MemberCard :member-id="post.member_id"></MemberCard>
</TableCell> </TableCell>
<TableCell>{{ post.type_name }}</TableCell> <TableCell>{{ post.type_name }}</TableCell>
<TableCell>{{ formatDate(post.start_date) }}</TableCell> <TableCell>{{ formatDate(post.start_date) }}</TableCell>