fix: added breadcrumb and made header sticky

(cherry picked from commit 9949478b362c77690507bf7d921dd3d60d2ead07)
This commit is contained in:
Shariq Ansari 2025-06-30 12:56:47 +05:30 committed by Mergify
parent 1f8e3f3802
commit 0302e9958b

View File

@ -1,10 +1,9 @@
<template>
<div class="flex flex-col">
<div class="flex flex-col h-full overflow-hidden">
<LayoutHeader>
<template #left-header>
<div class="text-lg font-medium text-gray-900">Dashboard</div>
<ViewBreadcrumbs routeName="Dashboard" />
</template>
<template #right-header> </template>
</LayoutHeader>
<div class="p-5 w-full overflow-y-scroll">
@ -47,6 +46,7 @@
</template>
<script setup lang="ts">
import ViewBreadcrumbs from '@/components/ViewBreadcrumbs.vue'
import LayoutHeader from '@/components/LayoutHeader.vue'
import { AxisChart, DonutChart, NumberChart, usePageMeta } from 'frappe-ui'