We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 548c700 commit c4812b6Copy full SHA for c4812b6
public/elements/tind-refs.jsx
@@ -66,13 +66,11 @@ export default function TindRefs () {
66
<div key={index}>
67
{ref.link && ref.link.trim() !== '' ? (
68
<a href={ref.link} style={{ textDecoration: 'underline' }}>{ref.title}</a>
69
- ) : (
70
- <span>{ref.title}</span>
71
- )}
+ ) : (<span>{ref.title}</span>)}
72
<p>
73
- Interviewee(s): {ref.interviewees.join(' | ')}<br />
74
- Interviewer(s): {ref.interviewers.join(' | ')}<br />
75
- Project Name: {ref.project}<br />
+ Interviewee(s): {ref.interviewees.join(' | ') || 'not listed'}<br />
+ Interviewer(s): {ref.interviewers.join(' | ') || 'not listed'}<br />
+ Project Name: {ref.project || 'not listed'}<br />
76
</p>
77
___________
78
</div>
0 commit comments