mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
Merge pull request #321 from hydralauncher/fix/playtime-not-showing-on-ui
fix: playtime not showing on UI
This commit is contained in:
commit
53f0de945c
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ export function HeroPanel({
|
|||
);
|
||||
}
|
||||
|
||||
if (game && GameStatusHelper.isReady(game?.status ?? null)) {
|
||||
if (game && GameStatusHelper.isReady(game?.status ?? GameStatus.Finished)) {
|
||||
return <HeroPanelPlaytime game={game} isGamePlaying={isGamePlaying} />;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue