This commit is contained in:
Jake Kasper
2025-08-26 07:09:25 -05:00
parent 054f743e2d
commit 0a47dd742b
3 changed files with 128 additions and 55 deletions

View File

@@ -322,7 +322,12 @@ const Applications = () => {
</>
) : (
<>
<p> Product: {application.totalProductAmount.toFixed(2)} {application.totalWaterAmount > 0 ? 'oz' : 'lbs'}</p>
{/* Show single product with name */}
{application.productDetails && application.productDetails.length === 1 ? (
<p> {application.productDetails[0].name}{application.productDetails[0].brand ? ` (${application.productDetails[0].brand})` : ''}: {application.productDetails[0].calculatedAmount.toFixed(2)} {application.totalWaterAmount > 0 ? 'oz' : 'lbs'}</p>
) : (
<p> Product: {application.totalProductAmount.toFixed(2)} {application.totalWaterAmount > 0 ? 'oz' : 'lbs'}</p>
)}
{application.totalWaterAmount > 0 && (
<p> Water: {application.totalWaterAmount.toFixed(2)} gallons</p>
)}
@@ -835,18 +840,18 @@ const ApplicationPlanModal = ({
<div className="flex items-center gap-2">
<input
type="number"
step="0.1"
step="0.01"
min="0"
value={item.rateAmount || ''}
onChange={(e) => {
const newProducts = [...planData.selectedProducts];
newProducts[index] = {
...item,
rateAmount: parseFloat(e.target.value) || 0
rateAmount: e.target.value === '' ? '' : parseFloat(e.target.value)
};
setPlanData({ ...planData, selectedProducts: newProducts });
}}
className="w-20 px-2 py-1 text-sm border rounded"
className="w-24 px-2 py-1 text-sm border rounded"
placeholder="Rate"
/>
<select