mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-15 10:02:10 +00:00
19 lines
655 B
Plaintext
19 lines
655 B
Plaintext
@inherits MSGComponentBase
|
|
<MudDialog>
|
|
<DialogContent>
|
|
<MudJustifiedText Typo="Typo.body1">
|
|
@this.Message
|
|
</MudJustifiedText>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
@if (!string.IsNullOrWhiteSpace(this.ReleaseUrl))
|
|
{
|
|
<MudButton Variant="Variant.Filled" Color="Color.Info" StartIcon="@Icons.Material.Filled.OpenInBrowser" Href="@this.ReleaseUrl" Target="_blank">
|
|
@T("Show the latest release page")
|
|
</MudButton>
|
|
}
|
|
<MudButton OnClick="@this.Close" Variant="Variant.Filled">
|
|
@T("Close")
|
|
</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |