Fixed false not accepted as actor edit value.

This commit is contained in:
2024-10-23 22:14:12 +02:00
parent fabd57bbef
commit eb4234e978
3 changed files with 6 additions and 9 deletions

View File

@@ -657,7 +657,7 @@ const fields = computed(() => [
key: 'gender',
type: 'select',
value: actor.value.gender,
options: ['female', 'male', 'transsexual', 'other', null],
options: [null, 'female', 'male', 'transsexual', 'other'],
inline: true,
},
{