Skip to content

Commit

Permalink
added description comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhaniivanov committed Nov 11, 2023
1 parent 9506962 commit 2fa8e13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const validationSchema: yup.SchemaOf<RerunTransactionsDatesInput> = yup
.object()
.defined()
.shape({
startDate: yup.date().required().min(new Date('2023, 07, 17')),
startDate: yup.date().required().min(new Date('2023, 07, 17')), //* start date minimum is set to 17/07/2023 because on this date started auto-sync https://github.com/podkrepi-bg/frontend/issues/1649
endDate: yup.date().required(),
})

Expand Down
1 change: 1 addition & 0 deletions src/components/admin/donations/grid/GridAppbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export default function GridAppbar() {
/>
<Box sx={{ height: '64px', display: 'flex', alignItems: 'flex-end', pb: 1 }}>
<Box sx={{ display: 'flex', alignItems: 'center' }}>
{/* button is disabled because we have a bug(conflicting bank donations) https://github.com/podkrepi-bg/frontend/issues/1649 */}
<Button disabled>
<Tooltip title={t('donations:form-heading-bank-transactions-file') || ''}>
<Receipt
Expand Down

0 comments on commit 2fa8e13

Please sign in to comment.