We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4aef2c commit d4e470fCopy full SHA for d4e470f
1 file changed
src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementProductTable.tsx
@@ -566,7 +566,9 @@ const ReimbursementProductTable: React.FC<ReimbursementProductTableProps> = ({
566
>
567
{hasWbsNum ? (
568
<FormControl fullWidth margin="dense" variant="outlined" size="small">
569
- {watch(`reimbursementProducts.${product.index}.materialId`) || !watch(`reimbursementProducts.${product.index}.name`) || pendingMaterialIndices.has(product.index) ? (
+ {watch(`reimbursementProducts.${product.index}.materialId`) ||
570
+ !watch(`reimbursementProducts.${product.index}.name`) ||
571
+ pendingMaterialIndices.has(product.index) ? (
572
<Box sx={{ display: 'flex', gap: 1, alignItems: 'center' }}>
573
<Box sx={{ flex: 1 }}>
574
<MaterialAutocomplete
0 commit comments