Skip to content

Commit

Permalink
fix: remove min visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
rajuAhmed1705 committed Jul 27, 2024
1 parent 30835ba commit 0bcc528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion designer_v2/lib/features/monitor/study_monitor_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class StudyMonitorScreen extends StudyPageWidget {
) {
final theme = Theme.of(context);
final int total = monitorData.length;
const double minPercentage = 0.01; // Minimum percentage for visibility
const double minPercentage = 0; // Minimum percentage for visibility, change to 0.01 if min visibility is required.

double activePercentage = monitorData.activeParticipants.length / total;
double inactivePercentage = monitorData.inactiveParticipants.length / total;
Expand Down

0 comments on commit 0bcc528

Please sign in to comment.