From 3b694689f30481a07baffde0946c3cab4f724527 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Thu, 18 Jun 2026 00:33:24 +0200 Subject: [PATCH] Fixed actor edit negative boolean ignored by UI. --- pages/actors/edit/+Page.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/actors/edit/+Page.vue b/pages/actors/edit/+Page.vue index a8a3f50..80e0153 100644 --- a/pages/actors/edit/+Page.vue +++ b/pages/actors/edit/+Page.vue @@ -466,16 +466,16 @@ const fields = computed(() => [ type: 'augmentation', note: 'Provide explicit evidence, such as social media posts, visible scarring, or before/after. Avoid "it\'s obvious".', value: { - naturalBoobs: actor.value?.naturalBoobs || null, + naturalBoobs: actor.value?.naturalBoobs ?? null, boobsVolume: actor.value?.boobsVolume || null, boobsImplant: actor.value?.boobsImplant || null, boobsPlacement: actor.value?.boobsPlacement || null, boobsIncision: actor.value?.boobsIncision || null, boobsSurgeon: actor.value?.boobsSurgeon || null, - naturalButt: actor.value?.naturalButt || null, + naturalButt: actor.value?.naturalButt ?? null, buttVolume: actor.value?.buttVolume || null, buttImplant: actor.value?.buttImplant || null, - naturalLips: actor.value?.naturalLips || null, + naturalLips: actor.value?.naturalLips ?? null, lipsVolume: actor.value?.lipsVolume || null, naturalLabia: actor.value?.naturalLabia || null, },