mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
major layout changes for quizzes
This commit is contained in:
@@ -15,6 +15,8 @@
|
||||
[Parameter]
|
||||
[EditorRequired]
|
||||
public string Class { get; set; } = "";
|
||||
[Parameter]
|
||||
public bool Disabled { get; set; } = false;
|
||||
|
||||
private Modal? modal { get; set; } = null;
|
||||
|
||||
@@ -49,6 +51,7 @@
|
||||
<button
|
||||
class="btn btn-danger"
|
||||
@onclick="() => modal?.Show()"
|
||||
disabled="@Disabled"
|
||||
>
|
||||
@Label
|
||||
</button>
|
||||
@@ -60,12 +63,14 @@
|
||||
<button
|
||||
class="btn btn-secondary"
|
||||
@onclick="HandleDeny"
|
||||
disabled="@Disabled"
|
||||
>
|
||||
no
|
||||
</button>
|
||||
<button
|
||||
class="btn btn-primary"
|
||||
@onclick="HandleConfirm"
|
||||
disabled="@Disabled"
|
||||
>
|
||||
yes
|
||||
</button>
|
||||
|
||||
Reference in New Issue
Block a user