fix: original path to image not showing in modal after updating game asset

This commit is contained in:
Moyasee
2025-09-30 02:09:19 +03:00
parent f0cb2f9579
commit 959bed746b
6 changed files with 81 additions and 13 deletions

View File

@@ -38,6 +38,12 @@ export interface Game {
customIconUrl?: string | null;
customLogoImageUrl?: string | null;
customHeroImageUrl?: string | null;
originalIconPath?: string | null;
originalLogoPath?: string | null;
originalHeroPath?: string | null;
customOriginalIconPath?: string | null;
customOriginalLogoPath?: string | null;
customOriginalHeroPath?: string | null;
playTimeInMilliseconds: number;
unsyncedDeltaPlayTimeInMilliseconds?: number;
lastTimePlayed: Date | null;