Removed the previously necessary MudList parameter 'Clickable' (#46)

This commit is contained in:
Thorsten Sommer 2024-07-26 10:16:46 +02:00 committed by GitHub
parent d6cf65e973
commit 79892eb829
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
<MudDialog> <MudDialog>
<DialogContent> <DialogContent>
<MudText Typo="Typo.body1">@this.Message</MudText> <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) @foreach (var (workspaceName, workspaceId) in this.workspaces)
{ {
<MudListItem Text="@workspaceName" Icon="@Icons.Material.Filled.Description" Value="@workspaceId" /> <MudListItem Text="@workspaceName" Icon="@Icons.Material.Filled.Description" Value="@workspaceId" />