Fix typo in date range filter input mapping for minStart and maxStop.

- 🐛 **Fix**: Corrected 'minStrat' to 'minStart' in mapping tests
This commit is contained in:
Lorenz Hilpert
2025-04-11 16:56:47 +02:00
parent 3c43d50f0f
commit afff1ea8fd

View File

@@ -158,7 +158,7 @@ describe('dateRangeFilterInputMapping', () => {
type: InputType.DateRange,
start: '2023-01-01',
stop: '2023-12-31',
minStrat: '2022-01-01',
minStart: '2022-01-01',
maxStop: '2024-12-31',
});
@@ -170,7 +170,7 @@ describe('dateRangeFilterInputMapping', () => {
type: InputType.DateRange,
start: '2023-01-01',
stop: '2023-12-31',
minStrat: '2022-01-01',
minStart: '2022-01-01',
maxStop: '2024-12-31',
});
});