diff --git a/src/core/features/course/components/module/module.ts b/src/core/features/course/components/module/module.ts index 5aa7db4c1..fa88c7094 100644 --- a/src/core/features/course/components/module/module.ts +++ b/src/core/features/course/components/module/module.ts @@ -93,9 +93,7 @@ export class CoreCourseModuleComponent implements OnInit, OnDestroy { this.hasInfo = !!( this.module.description || (this.showActivityDates && this.module.dates && this.module.dates.length) || - (this.autoCompletionTodo) || - (this.module.visible === 0 && (!this.section || this.section.visible)) || - (this.module.visible !== 0 && this.module.isStealth) || + (this.autoCompletionTodo && !this.showLegacyCompletion) || (this.module.availabilityinfo) );