From 9e7e6416ff8b550ce447f7d92c068798049b1e8c Mon Sep 17 00:00:00 2001 From: Georges-Antoine Assi Date: Fri, 3 Jan 2025 19:27:11 -0500 Subject: [PATCH] Default grid view for recently and continue playing to false --- frontend/src/components/Home/ContinuePlaying.vue | 2 +- frontend/src/components/Home/RecentAdded.vue | 2 +- frontend/src/components/Settings/UserInterface/Interface.vue | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/Home/ContinuePlaying.vue b/frontend/src/components/Home/ContinuePlaying.vue index a916f0fb0..fa9ce9c1a 100644 --- a/frontend/src/components/Home/ContinuePlaying.vue +++ b/frontend/src/components/Home/ContinuePlaying.vue @@ -14,7 +14,7 @@ const { continuePlayingRoms } = storeToRefs(romsStore); const gridContinuePlayingRoms = isNull( localStorage.getItem("settings.gridContinuePlayingRoms"), ) - ? true + ? false : localStorage.getItem("settings.gridContinuePlayingRoms") === "true";