mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
commit fix to modules
This commit is contained in:
@@ -21,13 +21,15 @@
|
||||
<h3 >Stored Courses</h3>
|
||||
@foreach (var course in localCourses)
|
||||
{
|
||||
<h4
|
||||
class="m-3 hover-underline-animation"
|
||||
@onclick="() => planner.LocalCourse = course"
|
||||
role='button'
|
||||
>
|
||||
@course.Name
|
||||
</h4>
|
||||
<div>
|
||||
<h4
|
||||
class="m-3 hover-underline-animation"
|
||||
@onclick="() => planner.LocalCourse = course"
|
||||
role='button'
|
||||
>
|
||||
@course.Name
|
||||
</h4>
|
||||
</div>
|
||||
}
|
||||
}
|
||||
</div>
|
||||
@@ -60,7 +60,7 @@
|
||||
}
|
||||
|
||||
private string accordionId {
|
||||
get => Module.Name.Replace(" ", "") + "-AccordionItem";
|
||||
get => Module.Name.Replace(" ", "").Replace("#", "") + "-AccordionItem";
|
||||
}
|
||||
|
||||
void OnDragEnter() {
|
||||
|
||||
Reference in New Issue
Block a user