diff --git a/src/components/panels/ResourcePanelCompact.tsx b/src/components/panels/ResourcePanelCompact.tsx index 4ca0ecf4..fcffec4c 100644 --- a/src/components/panels/ResourcePanelCompact.tsx +++ b/src/components/panels/ResourcePanelCompact.tsx @@ -1,5 +1,6 @@ import { useAppStore } from '@/state/appStore'; import { useTranslation } from 'react-i18next'; +import { AlertTriangle } from 'lucide-react'; import { UnitsInput } from '@/components/common/UnitsInput'; import { scopeTaskResources } from '@/utils/taskResourceScope'; import { ensureThemeVisible, resourceDisplayColor } from '@/engine/renderer/resourcePalette'; @@ -42,11 +43,21 @@ export function ResourcePanelCompact() { > {r.name || r.id} + {overallocated && ( + + + + )} - ); })}