mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
got debounced saving working. some of the assignment saving logic is real time
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
|
||||
@inject DragContainer dragContainer
|
||||
@inject CoursePlanner planner
|
||||
@inject AssignmentEditorContext assignmentContext
|
||||
|
||||
@code {
|
||||
[Parameter]
|
||||
@@ -128,7 +129,7 @@
|
||||
draggable="true"
|
||||
@ondragstart="HandleDragStart"
|
||||
@ondragend="HandleDragEnd"
|
||||
@onclick="@(() => showUpdateForm = true)"
|
||||
@onclick="@(() => assignmentContext.Assignment = Assignment)"
|
||||
role="button"
|
||||
>
|
||||
<div class="card">
|
||||
@@ -249,9 +250,3 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<AssignmentForm
|
||||
Assignment="Assignment"
|
||||
Show="showUpdateForm"
|
||||
OnHide="@(() => showUpdateForm = false)"
|
||||
/>
|
||||
Reference in New Issue
Block a user