From f4447b23de514eac40d555e22d09a8d58f9b6b0d Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Wed, 4 Mar 2026 02:53:49 +0100 Subject: [PATCH] Flipped scene and actor tags. --- pages/scene/+Page.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/scene/+Page.vue b/pages/scene/+Page.vue index 0451be2..9dae72f 100644 --- a/pages/scene/+Page.vue +++ b/pages/scene/+Page.vue @@ -448,14 +448,14 @@ const { const { scene } = pageProps; const tags = [ - ...scene.actors.map((actor) => ({ - actor, - tags: scene.tags.filter((tag) => tag.actorId === actor.id), - })), { tags: scene.tags.filter((tag) => tag.actorId === null), actor: null, }, + ...scene.actors.map((actor) => ({ + actor, + tags: scene.tags.filter((tag) => tag.actorId === actor.id), + })), ].filter((actorTags) => actorTags.tags.length > 0); const showSummaryDialog = ref(false);