2024-07-13 08:37:57 +00:00
|
|
|
<MudDialog>
|
|
|
|
<DialogContent>
|
|
|
|
<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>
|
|
|
|
<MudButton OnClick="@this.Cancel" Variant="Variant.Filled">Cancel</MudButton>
|
|
|
|
<MudButton OnClick="@this.Confirm" Variant="Variant.Filled" Color="Color.Info">@this.ConfirmText</MudButton>
|
|
|
|
</DialogActions>
|
|
|
|
</MudDialog>
|