Skip to content

Commit

Permalink
Merge pull request #568 from FIRSTIsrael/main
Browse files Browse the repository at this point in the history
update babada
  • Loading branch information
johnmeshulam authored Jul 9, 2024
2 parents 88915fb + ed36c65 commit 8bc820f
Show file tree
Hide file tree
Showing 4 changed files with 250 additions and 156 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ const TeamInformationChart: React.FC<TeamInformationChartProps> = ({ division, t
<TableBody>
<TableRow>
<TableCell>ניקוד גבוה ביותר (רובוט)</TableCell>
<TableCell>{Number(data.robotPerformance.maxScore?.toFixed(2))}</TableCell>
<TableCell>{Number(data.robotPerformance?.maxScore?.toFixed(2))}</TableCell>
</TableRow>
<TableRow>
<TableCell>סטיית תקן יחסית (רובוט)</TableCell>
<TableCell>{Number(data.robotPerformance.relStdDev?.toFixed(2)) + '%'}</TableCell>
<TableCell>{Number(data.robotPerformance?.relStdDev?.toFixed(2)) + '%'}</TableCell>
</TableRow>
<TableRow>
<TableCell>פרסים</TableCell>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const HeadQueuerJudgingSchedule: React.FC<HeadQueuerJudgingScheduleProps> = ({
return groups
.filter(group => group.length > 0)
.filter(group => !group.some(session => session.status === 'completed'))
.filter(group => group.some(session => session.status !== 'not-started'))
.filter(group => group.some(session => session.status === 'not-started'))
.filter(group => currentTime <= dayjs(group[0].scheduledTime).subtract(20, 'minutes'));
}, [sessions, currentTime]);

Expand Down
Loading

0 comments on commit 8bc820f

Please sign in to comment.