We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0f154b commit 20cbfbcCopy full SHA for 20cbfbc
1 file changed
src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementFormView.tsx
@@ -120,6 +120,8 @@ const ReimbursementRequestFormView: React.FC<ReimbursementRequestFormViewProps>
120
return { label: expenseTypePipe(expenseType), id: expenseType.expenseTypeId };
121
};
122
123
+ const formHeight: number = 375;
124
+
125
return (
126
<form
127
onSubmit={(e) => {
@@ -140,7 +142,7 @@ const ReimbursementRequestFormView: React.FC<ReimbursementRequestFormViewProps>
140
142
</Snackbar>
141
143
)}
144
<Grid container spacing={2}>
- <Grid item container maxHeight={375} spacing={2} md={6} xs={12}>
145
+ <Grid item container maxHeight={formHeight} spacing={2} md={6} xs={12}>
146
<Grid item xs={12}>
147
<FormControl fullWidth>
148
<FormLabel>Purchased From</FormLabel>
0 commit comments