Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
rajuAhmed1705 authored and johannesvedder committed Aug 9, 2024
1 parent 48c19a2 commit 479624b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion designer_v2/lib/domain/study_monitoring.dart
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,10 @@ extension StudyMonitoringX on Study {
schedule.numberOfCycles;

//calculate the total number of surveys for this participant
final totalSurveyTasks = observations.where((o)=>requiredSurveyTaskIds.contains(o.id)).length * schedule.length;
final totalSurveyTasks = observations
.where((o) => requiredSurveyTaskIds.contains(o.id))
.length *
schedule.length;

items.add(
StudyMonitorItem(
Expand Down

0 comments on commit 479624b

Please sign in to comment.