Skip to content

Commit

Permalink
feat(programs): add skipAnalytics checkbox for psde (#2849)
Browse files Browse the repository at this point in the history
  • Loading branch information
Birkbjo authored May 8, 2024
1 parent 841dd89 commit afbe979
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,14 @@ const ProgramStageDataElement = pure(
)}
/>
</Table.Cell>
<Table.Cell>
<Checkbox
checked={isCheckedForProp('skipAnalytics')}
onClick={onChangeFlipBooleanForProperty(
'skipAnalytics',
)}
/>
</Table.Cell>
<Table.Cell>
<RenderTypeSelectField
device={MOBILE}
Expand Down Expand Up @@ -328,6 +336,9 @@ function AssignDataElements(props, { d2 }) {
<Table.CellHead>
{d2.i18n.getTranslation('skip_synchronization')}
</Table.CellHead>
<Table.CellHead>
{d2.i18n.getTranslation('skip_in_analytics')}
</Table.CellHead>
<Table.CellHead>
{d2.i18n.getTranslation('render_type_mobile')}
</Table.CellHead>
Expand Down
1 change: 1 addition & 0 deletions src/i18n/i18n_module_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2335,3 +2335,4 @@ registration_organisation_unit=Registration organisation unit
organisation_unit_field=Organisation unit field
prevent_adding_new_events_to_stage=Prevent adding new events to stage
predict_according_to_input_category_option_combo=Predict according to input category option combo
skip_in_analytics=Skip in analytics

0 comments on commit afbe979

Please sign in to comment.