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>
|
2024-07-28 16:38:03 +00:00
|
|
|
<MudList T="Guid" @bind-SelectedValue="@this.selectedWorkspace">
|
2024-07-13 08:37:57 +00:00
|
|
|
@foreach (var (workspaceName, workspaceId) in this.workspaces)
|
|
|
|
{
|
|
|
|
<MudListItem Text="@workspaceName" Icon="@Icons.Material.Filled.Description" Value="@workspaceId" />
|
|
|
|
}
|
|
|
|
</MudList>
|
|
|
|
</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="Color.Info">
|
|
|
|
@this.ConfirmText
|
|
|
|
</MudButton>
|
2024-07-13 08:37:57 +00:00
|
|
|
</DialogActions>
|
|
|
|
</MudDialog>
|