Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
maf-gateway-revamp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Arunachalam P
maf-gateway-revamp
Commits
4cca1c4d
Commit
4cca1c4d
authored
Mar 31, 2026
by
krds-arun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix tyscript issue
parent
d67253ed
Pipeline
#63915
failed with stages
in 19 seconds
Changes
10
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
18 additions
and
13 deletions
+18
-13
page.tsx
app/panel/alerts/page.tsx
+1
-1
page.tsx
app/panel/modules/page.tsx
+6
-1
page.tsx
app/panel/profile/page.tsx
+1
-1
AuditsDashboard.tsx
components/panel/audits/AuditsDashboard/AuditsDashboard.tsx
+2
-2
ChecklistDashboard.tsx
...panel/checklist/ChecklistDashboard/ChecklistDashboard.tsx
+2
-2
IncidentsDashboard.tsx
...panel/incidents/IncidentsDashboard/IncidentsDashboard.tsx
+1
-1
InspectionDashboard.tsx
...el/inspection/InspectionDashboard/InspectionDashboard.tsx
+2
-2
PermitDashboard.tsx
components/panel/permit/PermitDashboard/PermitDashboard.tsx
+1
-1
SuggestionDashboard.tsx
...el/suggestion/SuggestionDashboard/SuggestionDashboard.tsx
+1
-1
TrackingDashboard.tsx
...ts/panel/tracking/TrackingDashboard/TrackingDashboard.tsx
+1
-1
No files found.
app/panel/alerts/page.tsx
View file @
4cca1c4d
...
...
@@ -3,7 +3,7 @@ import { DashboardCard } from "@/components/panel/dashboard/DashboardCard/Dashbo
export
default
function
Page
()
{
return
(
<
div
style=
{
{
padding
:
"1rem"
}
}
>
<
DashboardCard
title=
"Alerts"
subtitle
=
"Coming soon"
>
<
DashboardCard
title=
"Alerts"
description
=
"Coming soon"
>
Your alerts center will appear here.
</
DashboardCard
>
</
div
>
...
...
app/panel/modules/page.tsx
View file @
4cca1c4d
import
{
Suspense
}
from
"react"
;
import
{
ModulesPage
}
from
"@/components/panel/modules/ModulesPage/ModulesPage"
;
export
default
function
Page
()
{
return
<
ModulesPage
/>;
return
(
<
Suspense
fallback=
{
<
div
>
Loading modules...
</
div
>
}
>
<
ModulesPage
/>
</
Suspense
>
);
}
app/panel/profile/page.tsx
View file @
4cca1c4d
...
...
@@ -3,7 +3,7 @@ import { DashboardCard } from "@/components/panel/dashboard/DashboardCard/Dashbo
export
default
function
Page
()
{
return
(
<
div
style=
{
{
padding
:
"1rem"
}
}
>
<
DashboardCard
title=
"Profile"
subtitle
=
"Coming soon"
>
<
DashboardCard
title=
"Profile"
description
=
"Coming soon"
>
Your profile page will appear here.
</
DashboardCard
>
</
div
>
...
...
components/panel/audits/AuditsDashboard/AuditsDashboard.tsx
View file @
4cca1c4d
...
...
@@ -46,7 +46,7 @@ export function AuditsDashboard() {
</
section
>
<
section
className=
"maf-auditDash__grid"
aria
-
label=
"Audits dashboard content"
>
<
DashboardCard
title=
"Audit Dashboard Progress"
subtitle
=
"Completed vs incomplete"
>
<
DashboardCard
title=
"Audit Dashboard Progress"
description
=
"Completed vs incomplete"
>
<
DashboardTrendChart
title=
"Audit Dashboard Progress"
labels=
{
months
}
...
...
@@ -57,7 +57,7 @@ export function AuditsDashboard() {
/>
</
DashboardCard
>
<
DashboardCard
title=
"Upcoming audits"
subtitle
=
"Next scheduled"
>
<
DashboardCard
title=
"Upcoming audits"
description
=
"Next scheduled"
>
<
div
className=
"maf-auditDash__table"
role=
"table"
aria
-
label=
"Upcoming audits table"
>
<
div
className=
"maf-auditDash__thead"
role=
"row"
>
<
div
role=
"columnheader"
>
Audit
</
div
>
...
...
components/panel/checklist/ChecklistDashboard/ChecklistDashboard.tsx
View file @
4cca1c4d
...
...
@@ -48,7 +48,7 @@ export function ChecklistDashboard() {
</
section
>
<
section
className=
"maf-checkDash__grid"
aria
-
label=
"Checklist dashboard content"
>
<
DashboardCard
title=
"Checklist Dashboard Progress"
subtitle
=
"Completed vs incomplete"
>
<
DashboardCard
title=
"Checklist Dashboard Progress"
description
=
"Completed vs incomplete"
>
<
DashboardTrendChart
title=
"Checklist Dashboard Progress"
labels=
{
months
}
...
...
@@ -59,7 +59,7 @@ export function ChecklistDashboard() {
/>
</
DashboardCard
>
<
DashboardCard
title=
"Upcoming checklist"
subtitle
=
"Next scheduled"
>
<
DashboardCard
title=
"Upcoming checklist"
description
=
"Next scheduled"
>
<
div
className=
"maf-checkDash__table"
role=
"table"
aria
-
label=
"Upcoming checklist table"
>
<
div
className=
"maf-checkDash__thead"
role=
"row"
>
<
div
role=
"columnheader"
>
Checklist
</
div
>
...
...
components/panel/incidents/IncidentsDashboard/IncidentsDashboard.tsx
View file @
4cca1c4d
...
...
@@ -38,7 +38,7 @@ export function IncidentsDashboard() {
</
section
>
<
section
className=
"maf-modDash__grid"
aria
-
label=
"Incidents dashboard content"
>
<
DashboardCard
title=
"Incident Progress"
subtitle
=
"Major vs LTI trend"
>
<
DashboardCard
title=
"Incident Progress"
description
=
"Major vs LTI trend"
>
<
DualLineTrendChart
title=
"Incident Progress"
labels=
{
months
}
...
...
components/panel/inspection/InspectionDashboard/InspectionDashboard.tsx
View file @
4cca1c4d
...
...
@@ -46,7 +46,7 @@ export function InspectionDashboard() {
</
section
>
<
section
className=
"maf-inspDash__grid"
aria
-
label=
"Inspection dashboard content"
>
<
DashboardCard
title=
"Inspection Dashboard Progress"
subtitle
=
"Completed vs incomplete"
>
<
DashboardCard
title=
"Inspection Dashboard Progress"
description
=
"Completed vs incomplete"
>
<
DashboardTrendChart
title=
"Inspection Dashboard Progress"
labels=
{
months
}
...
...
@@ -57,7 +57,7 @@ export function InspectionDashboard() {
/>
</
DashboardCard
>
<
DashboardCard
title=
"Upcoming inspection"
subtitle
=
"Next scheduled"
>
<
DashboardCard
title=
"Upcoming inspection"
description
=
"Next scheduled"
>
<
div
className=
"maf-inspDash__table"
role=
"table"
aria
-
label=
"Upcoming inspection table"
>
<
div
className=
"maf-inspDash__thead"
role=
"row"
>
<
div
role=
"columnheader"
>
Inspection
</
div
>
...
...
components/panel/permit/PermitDashboard/PermitDashboard.tsx
View file @
4cca1c4d
...
...
@@ -58,7 +58,7 @@ export function PermitDashboard() {
</
section
>
<
section
className=
"maf-permitDash__grid"
aria
-
label=
"Permit dashboard content"
>
<
DashboardCard
title=
"Review queue"
subtitle
=
"What needs attention"
>
<
DashboardCard
title=
"Review queue"
description
=
"What needs attention"
>
<
div
className=
"maf-permitDash__queue"
>
<
div
className=
"maf-permitDash__queueRow"
>
<
span
>
Pending approvals
</
span
>
...
...
components/panel/suggestion/SuggestionDashboard/SuggestionDashboard.tsx
View file @
4cca1c4d
...
...
@@ -33,7 +33,7 @@ export function SuggestionDashboard() {
</
section
>
<
section
className=
"maf-suggestDash__grid"
aria
-
label=
"Suggestion dashboard content"
>
<
DashboardCard
title=
"Focus"
subtitle
=
"What to prioritize"
>
<
DashboardCard
title=
"Focus"
description
=
"What to prioritize"
>
<
div
className=
"maf-suggestDash__focus"
>
<
div
className=
"maf-suggestDash__focusRow"
>
<
span
>
Pending approval
</
span
>
...
...
components/panel/tracking/TrackingDashboard/TrackingDashboard.tsx
View file @
4cca1c4d
...
...
@@ -30,7 +30,7 @@ export function TrackingDashboard() {
</
section
>
<
section
className=
"maf-trackDash__grid"
aria
-
label=
"Tracking dashboard content"
>
<
DashboardCard
title=
"Today"
subtitle
=
"What to tackle first"
>
<
DashboardCard
title=
"Today"
description
=
"What to tackle first"
>
<
div
className=
"maf-trackDash__focus"
>
<
div
className=
"maf-trackDash__focusRow"
>
<
span
>
Overdue
</
span
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment