mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 10:59:46 +00:00
17 lines
522 B
Plaintext
17 lines
522 B
Plaintext
@inherits MSGComponentBase
|
|
@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">
|
|
@T("Issues")
|
|
</MudText>
|
|
<MudList T="string">
|
|
@foreach (var issue in this.IssuesData)
|
|
{
|
|
<MudListItem Icon="@Icons.Material.Filled.Error" IconColor="Color.Error">
|
|
@issue
|
|
</MudListItem>
|
|
}
|
|
</MudList>
|
|
</MudPaper>
|
|
} |