We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33b2aca commit feae5eaCopy full SHA for feae5ea
hwproj.front/src/components/Courses/CourseExperimental.tsx
@@ -565,8 +565,10 @@ export const CourseExperimental: FC<ICourseExperimentalProps> = (props) => {
565
}))
566
}}>
567
<Typography variant="h6" style={{fontSize: 18}} align={"center"}
568
- color={x.isDeferred ? "textSecondary" : "textPrimary"}>
569
- {renderHomeworkStatus(x)}
+ color={x.isDeferred
+ ? "textSecondary"
570
+ : x.tags!.includes(TestTag) ? "primary" : "textPrimary"}>
571
+ {isMentor && renderHomeworkStatus(x)}
572
{x.title}{getTip(x)}
573
</Typography>
574
{x.isDeferred && !x.publicationDateNotSet &&
0 commit comments