feat: Dashboard - Vehicle Fleet Overview (#2) #3

Merged
egullickson merged 11 commits from issue-2-dashboard-fleet-overview into main 2026-01-03 04:47:29 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 927b1a4128 - Show all commits

View File

@@ -3,7 +3,7 @@
# After verification, sends notification with link to trigger production deploy
name: Deploy to Staging
run-name: Staging Deploy - ${{ gitea.sha }}
run-name: "Staging - ${{ gitea.event.pull_request.title || gitea.ref_name }}"
on:
push:

View File

@@ -27,14 +27,14 @@ export const SummaryCards: React.FC<SummaryCardsProps> = ({ summary }) => {
value: summary.upcomingMaintenanceCount,
subtitle: 'Next 30 days',
icon: BuildRoundedIcon,
color: 'warning.main',
color: 'primary.main',
},
{
title: 'Recent Fuel Logs',
value: summary.recentFuelLogsCount,
subtitle: 'Last 7 days',
icon: LocalGasStationRoundedIcon,
color: 'success.main',
color: 'primary.main',
},
];