From 34d9de44ddd97382b01675bdd7a09933576c718c Mon Sep 17 00:00:00 2001 From: grimsi <9295182+grimsi@users.noreply.github.com> Date: Fri, 5 Aug 2022 23:17:31 +0200 Subject: [PATCH] Fix bug when library is empty --- .../components/library-overview/library-overview.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/components/library-overview/library-overview.component.ts b/frontend/src/app/components/library-overview/library-overview.component.ts index 62615ce..774ad40 100644 --- a/frontend/src/app/components/library-overview/library-overview.component.ts +++ b/frontend/src/app/components/library-overview/library-overview.component.ts @@ -34,6 +34,7 @@ export class LibraryOverviewComponent implements AfterContentInit { detectedGames => { if(detectedGames.length === 0) { this.gameLibraryIsEmpty = true; + this.loading = false; return; }