mirror of
https://github.com/inventree/InvenTree.git
synced 2026-05-06 17:53:44 +00:00
Adjust text color for stock column (#11841)
- Muted color output - Fixes https://github.com/inventree/InvenTree/issues/11835 Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
@@ -272,16 +272,13 @@ export function StockColumn(props: StockColumnProps): TableColumn {
|
|||||||
<TableHoverCard
|
<TableHoverCard
|
||||||
value={
|
value={
|
||||||
<Group gap='xs' justify='left' wrap='nowrap'>
|
<Group gap='xs' justify='left' wrap='nowrap'>
|
||||||
<Text c={color}>{text}</Text>
|
<Text>{text}</Text>
|
||||||
{part.units && (
|
{part.units && <Text size='xs'>[{part.units}]</Text>}
|
||||||
<Text size='xs' c={color}>
|
|
||||||
[{part.units}]
|
|
||||||
</Text>
|
|
||||||
)}
|
|
||||||
</Group>
|
</Group>
|
||||||
}
|
}
|
||||||
title={t`Stock Information`}
|
title={t`Stock Information`}
|
||||||
extra={extra}
|
extra={extra}
|
||||||
|
iconColor={color}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user