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