2025-04-27 14:13:15 +00:00
|
|
|
@inherits MSGComponentBase
|
2024-07-13 08:37:57 +00:00
|
|
|
<MudDialog>
|
|
|
|
<DialogContent>
|
2025-04-27 14:13:15 +00:00
|
|
|
<MudText Typo="Typo.body1">
|
|
|
|
@this.Message
|
|
|
|
</MudText>
|
|
|
|
<MudTextField T="string" @bind-Text="@this.UserInput" Variant="Variant.Outlined" AutoGrow="@false" Lines="1" Label="@T("Chat name")" AutoFocus="@true" UserAttributes="@USER_INPUT_ATTRIBUTES"/>
|
2024-07-13 08:37:57 +00:00
|
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
2025-04-27 14:13:15 +00:00
|
|
|
<MudButton OnClick="@this.Cancel" Variant="Variant.Filled">
|
|
|
|
@T("Cancel")
|
|
|
|
</MudButton>
|
|
|
|
<MudButton OnClick="@this.Confirm" Variant="Variant.Filled" Color="@this.ConfirmColor">
|
|
|
|
@this.ConfirmText
|
|
|
|
</MudButton>
|
2024-07-13 08:37:57 +00:00
|
|
|
</DialogActions>
|
|
|
|
</MudDialog>
|