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.
2 parents 9c459db + 12ad424 commit b09400dCopy full SHA for b09400d
app/components/user-page/course-progress-list.ts
@@ -16,7 +16,10 @@ export default class CourseProgressListComponent extends Component<Signature> {
16
const participationsGroupedByCourse: CourseParticipationModel[][] = Object.values(
17
groupBy(
18
this.args.user.courseParticipations.filter(
19
- (participation) => !participation.course.releaseStatusIsDeprecated && !participation.course.visibilityIsPrivate,
+ (participation) =>
20
+ !participation.course.releaseStatusIsDeprecated &&
21
+ !participation.course.visibilityIsPrivate &&
22
+ !participation.course.releaseStatusIsAlpha,
23
),
24
'course',
25
0 commit comments