mirror of
https://github.com/stashapp/stash.git
synced 2026-05-08 20:58:48 +02:00
Fix performer height/weight clearing (#3520)
This commit is contained in:
parent
7a2ee7cdda
commit
57951fe6a0
1 changed files with 4 additions and 0 deletions
|
|
@ -424,6 +424,8 @@ export const PerformerEditPanel: React.FC<IPerformerDetails> = ({
|
|||
input: {
|
||||
...input,
|
||||
gender: input.gender || null,
|
||||
height_cm: input.height_cm || null,
|
||||
weight: input.weight || null,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
@ -437,6 +439,8 @@ export const PerformerEditPanel: React.FC<IPerformerDetails> = ({
|
|||
id: performer.id!,
|
||||
...input,
|
||||
gender: input.gender || null,
|
||||
height_cm: input.height_cm || null,
|
||||
weight: input.weight || null,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue