LANCommander/LANCommander.Launcher/UI/Library/Components/LibraryItemDetails.razor
Pat Hartl e7653cb33e Clean up selected library item main view
The library view was constructed to be a monolithic component. It has been split out to multiple components, with the potential for expansion into other library items types in the future (other than just a game). The handler for failed installs has also been moved to the queue.
2025-10-05 19:30:32 -05:00

10 lines
No EOL
223 B
Text

@using ListItem = LANCommander.Launcher.Models.ListItem
@if (CurrentItem?.DataItem is Data.Models.Game)
{
<GameDetails @key="CurrentItem.Key" />
}
@code {
[CascadingParameter] ListItem? CurrentItem { get; set; }
}