reparied application recruter view

This commit is contained in:
2025-10-19 20:45:29 -04:00
parent ad83c927e6
commit 659a8f5b98
2 changed files with 2 additions and 1 deletions

View File

@@ -61,7 +61,7 @@ async function handleDeny(id) {
const router = useRouter(); const router = useRouter();
function openApplication(id) { function openApplication(id) {
router.push(`/applications/${id}`) router.push(`./application/${id}`)
} }
onMounted(async () => { onMounted(async () => {

View File

@@ -22,6 +22,7 @@ const router = createRouter({
meta: { requiresAuth: true, memberOnly: true, roles: ['staff', 'admin'] }, meta: { requiresAuth: true, memberOnly: true, roles: ['staff', 'admin'] },
children: [ children: [
{ path: 'applications', component: () => import('@/pages/ManageApplications.vue') }, { path: 'applications', component: () => import('@/pages/ManageApplications.vue') },
{ path: 'application/:id', component: () => import('@/pages/Application.vue') },
{ path: 'rankChange', component: () => import('@/pages/RankChange.vue') }, { path: 'rankChange', component: () => import('@/pages/RankChange.vue') },
{ path: 'applications/:id', component: () => import('@/pages/Application.vue') }, { path: 'applications/:id', component: () => import('@/pages/Application.vue') },
{ path: 'transfer', component: () => import('@/pages/ManageTransfers.vue') }, { path: 'transfer', component: () => import('@/pages/ManageTransfers.vue') },