mirror of
https://github.com/inventree/InvenTree.git
synced 2026-05-28 03:49:20 +00:00
Fix text size in build line table (#11986)
This commit is contained in:
@@ -536,7 +536,10 @@ export default function BuildLineTable({
|
|||||||
minWidth: 125,
|
minWidth: 125,
|
||||||
render: (record: any) => {
|
render: (record: any) => {
|
||||||
return record?.bom_item_detail?.consumable ? (
|
return record?.bom_item_detail?.consumable ? (
|
||||||
<Text style={{ fontStyle: 'italic' }}>{t`Consumable item`}</Text>
|
<Text
|
||||||
|
size='sm'
|
||||||
|
style={{ fontStyle: 'italic' }}
|
||||||
|
>{t`Consumable item`}</Text>
|
||||||
) : (
|
) : (
|
||||||
<ProgressBar
|
<ProgressBar
|
||||||
progressLabel={true}
|
progressLabel={true}
|
||||||
|
|||||||
Reference in New Issue
Block a user