Skip to content

Commit e8147c4

Browse files
committed
TD-2182 - Document formatted
1 parent 8a0c058 commit e8147c4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DigitalLearningSolutions.Web/Controllers/TrackingSystem/CourseSetup/CourseSetupController.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public IActionResult Index(
159159
hasAdminFields = filterValue;
160160

161161
if (filter.Contains("HideInLearnerPortal"))
162-
hideInLearnerPortal = filterValue=="true" ? true:false;
162+
hideInLearnerPortal = filterValue == "true" ? true : false;
163163
}
164164
}
165165
}
@@ -718,16 +718,16 @@ private static IEnumerable<CourseStatisticsWithAdminFieldResponseCounts> UpdateC
718718
{
719719
if (course.Archived || course.Active == false)
720720
{
721-
course.NotActive = true;
721+
course.NotActive = true;
722722
}
723723
else
724724
{
725-
course.NotActive = false;
725+
course.NotActive = false;
726726
}
727727
}
728728

729729
return updatedCourses;
730730
}
731731

732-
}
732+
}
733733
}

0 commit comments

Comments
 (0)