From f3890cd916feb6a74da97bc4924ff45ad229dcd8 Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Fri, 21 May 2021 10:16:48 +0200 Subject: [PATCH] MOBILE-3761 course: Fix empty space displayed in some modules --- src/core/features/course/components/module/module.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/core/features/course/components/module/module.ts b/src/core/features/course/components/module/module.ts index 8c7201bd9..32cf918ef 100644 --- a/src/core/features/course/components/module/module.ts +++ b/src/core/features/course/components/module/module.ts @@ -100,7 +100,10 @@ export class CoreCourseModuleComponent implements OnInit, OnDestroy { this.hasInfo = !!( this.module.description || (this.showActivityDates && this.module.dates && this.module.dates.length) || - this.module.completiondata + (this.module.completiondata && + ((this.showManualCompletion && !this.module.completiondata.isautomatic) || + (this.showCompletionConditions && this.module.completiondata.isautomatic)) + ) ); if (this.module.handlerData.showDownloadButton) {