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);