mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 17:02:38 +01:00
add missing property to death date item (#5962)
This commit is contained in:
parent
019fe81de9
commit
e69238307c
1 changed files with 5 additions and 1 deletions
|
|
@ -94,7 +94,11 @@ export const PerformerDetailsPanel: React.FC<IPerformerDetails> =
|
||||||
}
|
}
|
||||||
fullWidth={fullWidth}
|
fullWidth={fullWidth}
|
||||||
/>
|
/>
|
||||||
<DetailItem id="death_date" value={performer.death_date} />
|
<DetailItem
|
||||||
|
id="death_date"
|
||||||
|
value={performer.death_date}
|
||||||
|
fullWidth={fullWidth}
|
||||||
|
/>
|
||||||
{performer.country ? (
|
{performer.country ? (
|
||||||
<DetailItem
|
<DetailItem
|
||||||
id="country"
|
id="country"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue