diff --git a/src/components/DataDimension/Info/ProgramIndicatorInfo.js b/src/components/DataDimension/Info/ProgramIndicatorInfo.js
index 18aaa7c1a..4dc9988ef 100644
--- a/src/components/DataDimension/Info/ProgramIndicatorInfo.js
+++ b/src/components/DataDimension/Info/ProgramIndicatorInfo.js
@@ -125,24 +125,27 @@ export const ProgramIndicatorInfo = ({ id, displayNameProp }) => {
boundaryTarget
)}
- {offsetPeriods && offsetPeriodType && (
- <>
-
-
-
- {i18n.t('Offset:')}
-
+ {Boolean(offsetPeriods) &&
+ Boolean(offsetPeriodType) && (
+ <>
+
+
+
+ {i18n.t(
+ 'Offset:'
+ )}
+
+
+ {i18n.t(
+ '{{ offsetPeriodType }} × {{ offsetPeriods }}',
+ {
+ offsetPeriodType,
+ offsetPeriods,
+ }
+ )}
- {i18n.t(
- '{{ offsetPeriodType }} × {{ offsetPeriods }}',
- {
- offsetPeriodType,
- offsetPeriods,
- }
- )}
-
- >
- )}
+ >
+ )}
)
)}