Skip to content

Commit 35d4853

Browse files
authored
Merge branch 'master' into feat/DHIS2-19344
2 parents 616268b + c8d7e3f commit 35d4853

3 files changed

Lines changed: 11 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [29.3.3](https://github.com/dhis2/analytics/compare/v29.3.2...v29.3.3) (2026-03-14)
2+
3+
4+
### Bug Fixes
5+
6+
* check against invalid year in fixed periods ([#1821](https://github.com/dhis2/analytics/issues/1821)) ([cb1ee75](https://github.com/dhis2/analytics/commit/cb1ee75801f9d4157e8117b60f4e6174ca71096d))
7+
18
## [29.3.2](https://github.com/dhis2/analytics/compare/v29.3.1...v29.3.2) (2026-03-11)
29

310

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dhis2/analytics",
3-
"version": "29.3.2",
3+
"version": "29.3.3",
44
"main": "./build/cjs/index.js",
55
"module": "./build/es/index.js",
66
"exports": {

src/components/PeriodDimension/PeriodTransfer.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,9 @@ const PeriodTransfer = ({
216216
)
217217
return opt?.getPeriods() || []
218218
} else {
219+
if (!/\d{4}/.test(fixedFilter.year)) {
220+
return []
221+
}
219222
const opt = filteredFixedOptions.find(
220223
(o) => o.id === effectiveFixedFilterType
221224
)

0 commit comments

Comments
 (0)