Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aa7c1b0354 | |||
| 4877e349f2 | |||
| d163528f68 |
+1
-1
@@ -5,7 +5,7 @@
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta name="description" content="WrenchBoard Agent" />
|
||||
<meta name="description" content="digiFi BackOffice" />
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700" />
|
||||
<title>digiFi Back Office</title>
|
||||
<link rel="shortcut icon" href="media/logos/favicon.ico" />
|
||||
|
||||
@@ -34,7 +34,7 @@ const MasterLayout = () => {
|
||||
|
||||
{/* begin:: Drawers */}
|
||||
<ActivityDrawer />
|
||||
<RightToolbar />
|
||||
{/* <RightToolbar /> */}
|
||||
<DrawerMessenger />
|
||||
{/* end:: Drawers */}
|
||||
|
||||
|
||||
@@ -21,26 +21,26 @@ const SidebarMenuMain = () => {
|
||||
</div>
|
||||
</div>
|
||||
<SidebarMenuItemWithSub
|
||||
to='/crafted/pages'
|
||||
to='/loan/pages'
|
||||
title='Process'
|
||||
fontIcon='bi-archive'
|
||||
icon='element-plus'
|
||||
>
|
||||
<SidebarMenuItemWithSub to='/crafted/pages/process' title='Loan' hasBullet={true}>
|
||||
<SidebarMenuItem to='/crafted/pages/process/started' title='Started' hasBullet={true} />
|
||||
<SidebarMenuItem to='/crafted/pages/process/pending' title='Pending' hasBullet={true} />
|
||||
<SidebarMenuItemWithSub to='/loan/pages/process' title='Loan' hasBullet={true}>
|
||||
<SidebarMenuItem to='/loan/pages/process/started' title='Started' hasBullet={true} />
|
||||
<SidebarMenuItem to='/loan/pages/process/pending' title='Pending' hasBullet={true} />
|
||||
<SidebarMenuItem
|
||||
to='/crafted/pages/process/ready'
|
||||
to='/loan/pages/process/ready'
|
||||
title='Ready'
|
||||
hasBullet={true}
|
||||
/>
|
||||
<SidebarMenuItem
|
||||
to='/crafted/pages/process/approved'
|
||||
to='/loan/pages/process/approved'
|
||||
title='Approved'
|
||||
hasBullet={true}
|
||||
/>
|
||||
<SidebarMenuItem
|
||||
to='/crafted/pages/process/rejected'
|
||||
to='/loan/pages/process/rejected'
|
||||
title='Rejected'
|
||||
hasBullet={true}
|
||||
/>
|
||||
|
||||
@@ -147,9 +147,9 @@ const ProcessHeader: FC = () => {
|
||||
<Link
|
||||
className={
|
||||
`nav-link text-active-primary me-6 ` +
|
||||
(location.pathname === '/crafted/pages/process/started' && 'active')
|
||||
(location.pathname === '/loan/pages/process/started' && 'active')
|
||||
}
|
||||
to='/crafted/pages/process/started'
|
||||
to='/loan/pages/process/started'
|
||||
>
|
||||
Started
|
||||
</Link>
|
||||
@@ -158,9 +158,9 @@ const ProcessHeader: FC = () => {
|
||||
<Link
|
||||
className={
|
||||
`nav-link text-active-primary me-6 ` +
|
||||
(location.pathname === '/crafted/pages/process/pending' && 'active')
|
||||
(location.pathname === '/loan/pages/process/pending' && 'active')
|
||||
}
|
||||
to='/crafted/pages/process/pending'
|
||||
to='/loan/pages/process/pending'
|
||||
>
|
||||
Pending
|
||||
</Link>
|
||||
@@ -169,9 +169,9 @@ const ProcessHeader: FC = () => {
|
||||
<Link
|
||||
className={
|
||||
`nav-link text-active-primary me-6 ` +
|
||||
(location.pathname === '/crafted/pages/process/ready' && 'active')
|
||||
(location.pathname === '/loan/pages/process/ready' && 'active')
|
||||
}
|
||||
to='/crafted/pages/process/ready'
|
||||
to='/loan/pages/process/ready'
|
||||
>
|
||||
Ready
|
||||
</Link>
|
||||
@@ -180,9 +180,9 @@ const ProcessHeader: FC = () => {
|
||||
<Link
|
||||
className={
|
||||
`nav-link text-active-primary me-6 ` +
|
||||
(location.pathname === '/crafted/pages/process/approved' && 'active')
|
||||
(location.pathname === '/loan/pages/process/approved' && 'active')
|
||||
}
|
||||
to='/crafted/pages/process/approved'
|
||||
to='/loan/pages/process/approved'
|
||||
>
|
||||
Approved
|
||||
</Link>
|
||||
@@ -191,9 +191,9 @@ const ProcessHeader: FC = () => {
|
||||
<Link
|
||||
className={
|
||||
`nav-link text-active-primary me-6 ` +
|
||||
(location.pathname === '/crafted/pages/process/rejected' && 'active')
|
||||
(location.pathname === '/loan/pages/process/rejected' && 'active')
|
||||
}
|
||||
to='/crafted/pages/process/rejected'
|
||||
to='/loan/pages/process/rejected'
|
||||
>
|
||||
Rejected
|
||||
</Link>
|
||||
|
||||
@@ -10,7 +10,7 @@ import {ProcessHeader} from './ProcessHeader'
|
||||
const processBreadCrumbs: Array<PageLink> = [
|
||||
{
|
||||
title: 'Loan',
|
||||
path: '/crafted/pages/process/started',
|
||||
path: '/loan/pages/process/started',
|
||||
isSeparator: false,
|
||||
isActive: false,
|
||||
},
|
||||
@@ -77,7 +77,7 @@ const ProcessPage = () => (
|
||||
</>
|
||||
}
|
||||
/>
|
||||
<Route index element={<Navigate to='/crafted/pages/profile/started' />} />
|
||||
<Route index element={<Navigate to='/loan/pages/profile/started' />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
)
|
||||
|
||||
@@ -27,7 +27,7 @@ const PrivateRoutes = () => {
|
||||
<Route path='menu-test' element={<MenuTestPage />} />
|
||||
{/* Lazy Modules */}
|
||||
<Route
|
||||
path='crafted/pages/process/*'
|
||||
path='loan/pages/process/*'
|
||||
element={
|
||||
<SuspensedView>
|
||||
<ProcessPage />
|
||||
|
||||
Reference in New Issue
Block a user