Fixed actor edit negative boolean ignored by UI.
This commit is contained in:
@@ -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,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user