Fix party name and description not actually displaying
This commit is contained in:
parent
538e61bc12
commit
ff65b6e281
1 changed files with 2 additions and 2 deletions
|
|
@ -98,9 +98,9 @@ const PartyDetails = (props: Props) => {
|
||||||
|
|
||||||
const readOnly = (
|
const readOnly = (
|
||||||
<section className={readOnlyClasses}>
|
<section className={readOnlyClasses}>
|
||||||
{ (appSnapshot.party.name) ? <h1>appSnapshot.party.name</h1> : '' }
|
{ (appSnapshot.party.name) ? <h1>{appSnapshot.party.name}</h1> : '' }
|
||||||
{ (appSnapshot.party.raid) ? <div className="Raid">{appSnapshot.party.raid.name.en}</div> : '' }
|
{ (appSnapshot.party.raid) ? <div className="Raid">{appSnapshot.party.raid.name.en}</div> : '' }
|
||||||
{ (appSnapshot.party.description) ? <p>appSnapshot.party.description</p> : '' }
|
{ (appSnapshot.party.description) ? <p>{appSnapshot.party.description}</p> : '' }
|
||||||
</section>
|
</section>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue