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.
10 lines
No EOL
223 B
Text
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; }
|
|
} |