Skip to content

Commit 4b1f9b7

Browse files
authored
Merge pull request #386 from connorabbas/admin-role-dev
Fix: Missing component, breadcrumbs
2 parents c9e3c82 + b7ed8be commit 4b1f9b7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

resources/js/pages/admin/Dashboard.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
<script setup lang="ts">
22
import { Head as InertiaHead } from '@inertiajs/vue3'
33
import AppLayout from '@/layouts/AppLayout.vue'
4+
5+
const breadcrumbs = [{ label: 'Admin Dashboard' }]
46
</script>
57

68
<template>
79
<InertiaHead title="Admin Dashboard" />
810

9-
<AppLayout>
11+
<AppLayout :breadcrumbs>
1012
<Card>
1113
<template #content>
1214
<p class="m-0">

resources/js/pages/admin/users/Index.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { formatInTimeZone } from 'date-fns-tz'
77
import { parseISO } from 'date-fns'
88
import { usePaginatedDataTable } from '@/composables/usePaginatedDataTable'
99
import AppLayout from '@/layouts/AppLayout.vue'
10+
import PageTitleSection from '@/components/PageTitleSection.vue'
1011
import ClientOnly from '@/components/ClientOnly.vue'
1112
import Menu from '@/components/primevue/menu/Menu.vue'
1213
import { LengthAwarePaginator } from '@/types/paginiation'

0 commit comments

Comments
 (0)