Skip to content

Commit

Permalink
feat(programs): add skipAnalytics checkbox for psde (#2839)
Browse files Browse the repository at this point in the history
  • Loading branch information
Birkbjo authored May 5, 2024
1 parent 8aff22d commit 69145ed
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 @@ -2364,3 +2364,4 @@ sorting_is_disabled_when_filter_is_applied=Sorting is diabled when a filter is a
save_the_program_in_order_to_access_sharing_settings=Save the program in order to access sharing settings
confirm_delete_icon=Are you sure you want to delete this icon?
intro_icon=Upload, modify and view icons which can be used assigned to other metadata.
skip_in_analytics=Skip in analytics

0 comments on commit 69145ed

Please sign in to comment.