mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-17 04:25:42 +00:00
@ -135,7 +135,7 @@ export default function PricingOverviewPanel({
|
|||||||
max_value: pricing?.overall_max
|
max_value: pricing?.overall_max
|
||||||
}
|
}
|
||||||
].filter((entry) => {
|
].filter((entry) => {
|
||||||
return entry.min_value !== null || entry.max_value !== null;
|
return !(entry.min_value == null || entry.max_value == null);
|
||||||
});
|
});
|
||||||
}, [part, pricing]);
|
}, [part, pricing]);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user