diff --git a/src/harvestPlan/HarvestPlanDisplay.tsx b/src/harvestPlan/HarvestPlanDisplay.tsx index ab16547..6917332 100644 --- a/src/harvestPlan/HarvestPlanDisplay.tsx +++ b/src/harvestPlan/HarvestPlanDisplay.tsx @@ -58,25 +58,25 @@ export default function HarvestPlanDisplay(props: Props) { - Break Even Yield: + Break Even Yield (acre): - {( + {plan.bushelPrice() !== 0 ? ( (plan.totalEquipmentCost() + plan.totalMaterialCost()) / plan.bushelPrice() - ).toFixed(2)}{" "} + ).toFixed(2) : 0}{" "} BU - Break Even Sales Price + Break Even Sales Price (BU): $ - {( + {plan.yieldTarget() !== 0 ? ( (plan.totalEquipmentCost() + plan.totalMaterialCost()) / plan.yieldTarget() - ).toFixed(2)} + ).toFixed(2) : 0}