mirror of
https://github.com/inventree/InvenTree.git
synced 2026-05-06 09:43:38 +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
|
||||
value={
|
||||
<Group gap='xs' justify='left' wrap='nowrap'>
|
||||
<Text c={color}>{text}</Text>
|
||||
{part.units && (
|
||||
<Text size='xs' c={color}>
|
||||
[{part.units}]
|
||||
</Text>
|
||||
)}
|
||||
<Text>{text}</Text>
|
||||
{part.units && <Text size='xs'>[{part.units}]</Text>}
|
||||
</Group>
|
||||
}
|
||||
title={t`Stock Information`}
|
||||
extra={extra}
|
||||
iconColor={color}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user