mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 16:49:06 +00:00
18 lines
431 B
Plaintext
18 lines
431 B
Plaintext
|
<MudListItem T="string" Icon="@this.Icon">
|
||
|
@if (string.IsNullOrWhiteSpace(this.URL))
|
||
|
{
|
||
|
<MudText Typo="Typo.body1" Inline="@true">
|
||
|
@this.Name
|
||
|
</MudText>
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
<MudLink Href="@this.URL" Target="_blank">
|
||
|
@this.Name
|
||
|
</MudLink>
|
||
|
}
|
||
|
|
||
|
<MudText Typo="Typo.body1" Class="ml-3" Inline="@true">
|
||
|
@this.Acknowledgment
|
||
|
</MudText>
|
||
|
</MudListItem>
|