Skip to content

Commit

Permalink
fix: participant info max intervention and survey count
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesvedder committed Aug 9, 2024
1 parent c9c0627 commit 8733e1b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ class ParticipantInfo extends ConsumerWidget {
),
_buildInfoRow(
tr.monitoring_table_column_completed_interventions,
'${monitorItem.completedInterventions}/${monitorItem.completedInterventions + monitorItem.missedInterventions}',
'${monitorItem.completedInterventions}/${monitorItem.totalInterventionTasks}',
),
_buildInfoRow(
tr.monitoring_table_column_completed_surveys,
'${monitorItem.completedSurveys}/${monitorItem.completedSurveys + monitorItem.missedSurveys}',
'${monitorItem.completedSurveys}/${monitorItem.totalSurveyTasks}',
),
],
),
Expand Down

0 comments on commit 8733e1b

Please sign in to comment.