fix: correct missing @ directives on ExpandedGenre bindings in genre browser

This commit is contained in:
daniel-c-harvey
2026-06-11 17:30:11 -04:00
parent b359786e69
commit fd8c0e389f
2 changed files with 2 additions and 2 deletions
@@ -32,7 +32,7 @@ else
{
<MudDivider Class="my-4" />
<MudText Typo="Typo.h6" Class="mb-2">@ExpandedGenre</MudText>
<CmsTrackGrid @key="ExpandedGenre" GenreFilter="ExpandedGenre" ShowAddButton="false" />
<CmsTrackGrid @key="ExpandedGenre" GenreFilter="@ExpandedGenre" ShowAddButton="false" />
}
}
@@ -61,7 +61,7 @@
{
<CmsGenreBrowser Genres="VM.Genres"
IsLoading="VM.GenresLoading"
ExpandedGenre="VM.ExpandedGenre"
ExpandedGenre="@VM.ExpandedGenre"
OnExpandedGenreChanged="OnExpandedGenreChanged" />
}
</MudContainer>