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>
|
<h3 >Stored Courses</h3>
|
||||||
@foreach (var course in localCourses)
|
@foreach (var course in localCourses)
|
||||||
{
|
{
|
||||||
<h4
|
<div>
|
||||||
class="m-3 hover-underline-animation"
|
<h4
|
||||||
@onclick="() => planner.LocalCourse = course"
|
class="m-3 hover-underline-animation"
|
||||||
role='button'
|
@onclick="() => planner.LocalCourse = course"
|
||||||
>
|
role='button'
|
||||||
@course.Name
|
>
|
||||||
</h4>
|
@course.Name
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
@@ -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() {
|
||||||
|
|||||||
Reference in New Issue
Block a user