mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 23:09:07 +00:00
14 lines
467 B
Plaintext
14 lines
467 B
Plaintext
|
@if (this.IssuesData.Any())
|
||
|
{
|
||
|
<MudPaper Class="pa-3 mr-3 mt-3 border-dashed border rounded-lg mud-alert-outlined-error">
|
||
|
<MudText Typo="Typo.h6">Issues</MudText>
|
||
|
<MudList T="string">
|
||
|
@foreach (var issue in this.IssuesData)
|
||
|
{
|
||
|
<MudListItem Icon="@Icons.Material.Filled.Error" IconColor="Color.Error">
|
||
|
@issue
|
||
|
</MudListItem>
|
||
|
}
|
||
|
</MudList>
|
||
|
</MudPaper>
|
||
|
}
|