commit fix to modules

This commit is contained in:
2023-08-21 07:30:25 -06:00
parent 5d4269fdcd
commit ebf304fdf5
2 changed files with 10 additions and 8 deletions

View File

@@ -21,6 +21,7 @@
<h3 >Stored Courses</h3> <h3 >Stored Courses</h3>
@foreach (var course in localCourses) @foreach (var course in localCourses)
{ {
<div>
<h4 <h4
class="m-3 hover-underline-animation" class="m-3 hover-underline-animation"
@onclick="() => planner.LocalCourse = course" @onclick="() => planner.LocalCourse = course"
@@ -28,6 +29,7 @@
> >
@course.Name @course.Name
</h4> </h4>
</div>
} }
} }
</div> </div>

View File

@@ -60,7 +60,7 @@
} }
private string accordionId { private string accordionId {
get => Module.Name.Replace(" ", "") + "-AccordionItem"; get => Module.Name.Replace(" ", "").Replace("#", "") + "-AccordionItem";
} }
void OnDragEnter() { void OnDragEnter() {