From 18f5a6f476fab883ac7087fd1672c2e6fd56ed1d Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Mon, 30 Mar 2026 17:00:17 +0200 Subject: [PATCH] Fixed age of passing in actor tile. --- components/actors/tile.vue | 2 +- src/actors.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/components/actors/tile.vue b/components/actors/tile.vue index 48fd865..6287106 100644 --- a/components/actors/tile.vue +++ b/components/actors/tile.vue @@ -41,7 +41,7 @@ {{ actor.ageAtDeath }} diff --git a/src/actors.js b/src/actors.js index 2174bc9..abb0e2c 100644 --- a/src/actors.js +++ b/src/actors.js @@ -80,6 +80,8 @@ export function curateActor(actor, context = {}) { ageThen: context.sceneDate && actor.date_of_birth && actor.date_of_birth.getFullYear() > 1 ? differenceInYears(context.sceneDate, actor.date_of_birth) : null, + dateOfBirth: actor.date_of_birth, + dateOfDeath: actor.date_of_death, bust: actor.bust, cup: actor.cup, waist: actor.waist,