Skip to content

Commit 20cbfbc

Browse files
committed
#1660: left side of form doesn't expand
1 parent b0f154b commit 20cbfbc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementFormView.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ const ReimbursementRequestFormView: React.FC<ReimbursementRequestFormViewProps>
120120
return { label: expenseTypePipe(expenseType), id: expenseType.expenseTypeId };
121121
};
122122

123+
const formHeight: number = 375;
124+
123125
return (
124126
<form
125127
onSubmit={(e) => {
@@ -140,7 +142,7 @@ const ReimbursementRequestFormView: React.FC<ReimbursementRequestFormViewProps>
140142
</Snackbar>
141143
)}
142144
<Grid container spacing={2}>
143-
<Grid item container maxHeight={375} spacing={2} md={6} xs={12}>
145+
<Grid item container maxHeight={formHeight} spacing={2} md={6} xs={12}>
144146
<Grid item xs={12}>
145147
<FormControl fullWidth>
146148
<FormLabel>Purchased From</FormLabel>

0 commit comments

Comments
 (0)