Application integration

This commit is contained in:
2025-12-13 01:36:12 -05:00
parent 93e8f3b3d2
commit 533e315642
2 changed files with 6 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ import { onMounted, ref, watch } from 'vue';
import { useRoute, useRouter } from 'vue-router';
import { CheckIcon, XIcon } from 'lucide-vue-next';
import Application from './Application.vue';
import MemberCard from '@/components/members/MemberCard.vue';
const appList = ref([]);
const now = Date.now();
@@ -113,7 +114,9 @@ onMounted(async () => {
<TableBody>
<TableRow v-for="app in appList" :key="app.id" class="cursor-pointer"
@click="openApplication(app.id)">
<TableCell class="font-medium">{{ app.member_name }}</TableCell>
<TableCell class="font-medium">
<MemberCard :memberId="app.member_id"></MemberCard>
</TableCell>
<TableCell :title="formatExact(app.submitted_at)">
{{ formatAgo(app.submitted_at) }}
</TableCell>