Removed the previously necessary MudList parameter 'Clickable'

This commit is contained in:
Thorsten Sommer 2024-07-26 10:13:48 +02:00
parent d6cf65e973
commit a137ca8820
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -1,7 +1,7 @@
<MudDialog>
<DialogContent>
<MudText Typo="Typo.body1">@this.Message</MudText>
<MudList Clickable="@true" @bind-SelectedValue="@this.selectedWorkspace">
<MudList @bind-SelectedValue="@this.selectedWorkspace">
@foreach (var (workspaceName, workspaceId) in this.workspaces)
{
<MudListItem Text="@workspaceName" Icon="@Icons.Material.Filled.Description" Value="@workspaceId" />