We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4c1050 commit 9a3f70eCopy full SHA for 9a3f70e
2 files changed
src/components/BootstrapBlazor.Tasks.Dashboard/TaskDashboard.razor
@@ -31,7 +31,7 @@
31
</TableTemplateColumn>
32
<TableTemplateColumn Text="@Localizer["Exception"]">
33
<Template Context="v">
34
- @if (v.Row.Exception == null)
+ @if (v.Row.Exception != null)
35
{
36
<Button Color="Color.Danger" Size="Size.ExtraSmall" Icon="fa-solid fa-exclamation-circle"
37
OnClickWithoutRender="() => OnShowException(v.Row, v.Row.Exception)"></Button>
src/components/BootstrapBlazor.Tasks.Dashboard/TaskDashboard.razor.cs
@@ -108,7 +108,6 @@ private async Task OnLog(IScheduler scheduler)
108
109
private async Task OnShowException(IScheduler scheduler, Exception ex)
110
111
- ex = new Exception("test");
112
var option = new DialogOption()
113
114
Class = "modal-dialog-task-ex",
0 commit comments