We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 599cd76 commit 0712ea0Copy full SHA for 0712ea0
src/components/InfoPanel.tsx
@@ -21,6 +21,7 @@ class InfoPanel extends Component<Props, null> {
21
<SearchField onRefocus={this.props.onRefocus} person={person}/>
22
{person.getMarriedName() && <h2 className="birth-name">{person.getBirthName()}</h2>}
23
{person.getAlsoKnownAs() && <h2 className="alsoKnownAs">{person.getAlsoKnownAs()}</h2>}
24
+ {person.getNickname() && <h2 className="nickname">{person.getNickname()}</h2>}
25
26
<ul id="factView">
27
{person.getFacts().sort((a, b) => {
0 commit comments