We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 307594e commit 7d4a9b4Copy full SHA for 7d4a9b4
1 file changed
NetEvent/Client/Pages/Administration/SystemInfo.razor
@@ -25,7 +25,16 @@
25
<RowTemplate>
26
<MudTd DataLabel="Component">@context.Component</MudTd>
27
<MudTd DataLabel="Value">@context.Value</MudTd>
28
- <MudTd DataLabel="Healthy">@context.Healthy</MudTd>
+ <MudTd DataLabel="Healthy">
29
+ @if (context.Healthy)
30
+ {
31
+ <MudIcon Icon="@Icons.Filled.CheckCircle" Color="Color.Success" />
32
+ }
33
+ else
34
35
+ <MudIcon Icon="@Icons.Filled.Error" Color="Color.Error" />
36
37
+ </MudTd>
38
</RowTemplate>
39
</MudTable>
40
</MudTabPanel>
0 commit comments