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