Fix issue #7: add Wrench and BarChart2 to portal AppIcon map

Maintenance (Wrench) and Reports (BarChart2) icons were missing from
the hardcoded iconMap, causing those app tiles to show no icon.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-08 12:10:05 +00:00
parent 5b11a0d4aa
commit 905a447760

View file

@ -2,6 +2,7 @@ import {
ClipboardList, ChefHat, Banknote, BedDouble, TrendingUp, Tag, ClipboardList, ChefHat, Banknote, BedDouble, TrendingUp, Tag,
LayoutGrid, Users, Activity, Home, ScrollText, RefreshCw, LayoutGrid, Users, Activity, Home, ScrollText, RefreshCw,
ArrowUpCircle, Wifi, Terminal, Settings, Building2, CalendarClock, ArrowUpCircle, Wifi, Terminal, Settings, Building2, CalendarClock,
Wrench, BarChart2,
} from 'lucide-react' } from 'lucide-react'
import type { LucideProps } from 'lucide-react' import type { LucideProps } from 'lucide-react'
@ -11,6 +12,7 @@ const iconMap: Record<string, IconComponent> = {
ClipboardList, ChefHat, Banknote, BedDouble, TrendingUp, Tag, ClipboardList, ChefHat, Banknote, BedDouble, TrendingUp, Tag,
LayoutGrid, Users, Activity, Home, ScrollText, RefreshCw, LayoutGrid, Users, Activity, Home, ScrollText, RefreshCw,
ArrowUpCircle, Wifi, Terminal, Settings, Building2, CalendarClock, ArrowUpCircle, Wifi, Terminal, Settings, Building2, CalendarClock,
Wrench, BarChart2,
} }
interface Props { interface Props {