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, },