From 485c4d5d98fe939cabf9151fca60678b220d270f Mon Sep 17 00:00:00 2001 From: Dorian Date: Sun, 12 Apr 2026 00:27:02 -0400 Subject: [PATCH] fix: cloud folder views use same background as cloud main tab Cloud subpages (Music, Photos, etc.) now show bg-cloud.jpg instead of falling through to bg-home.jpg. Co-Authored-By: Claude Opus 4.6 (1M context) --- neode-ui/src/views/Dashboard.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neode-ui/src/views/Dashboard.vue b/neode-ui/src/views/Dashboard.vue index a6bb7dfd..35cf90a9 100644 --- a/neode-ui/src/views/Dashboard.vue +++ b/neode-ui/src/views/Dashboard.vue @@ -167,6 +167,8 @@ const isGlitching = ref(false) const backgroundImage = computed(() => { const mapped = ROUTE_BACKGROUNDS[route.path] if (mapped) return mapped + // Cloud subpages (folders) use the same background as Cloud + if (route.path.startsWith('/dashboard/cloud/')) return 'bg-cloud.jpg' if (isDetailRoute(route.path)) return 'bg-intro.jpg' return 'bg-home.jpg' })