Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Add job title to Result Card #485

Merged
merged 1 commit into from
Aug 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/routes/CreateNewTeam/components/ResultCard/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ function ResultCard({
<Curve styleName="curve" />
<IconEarthCheck styleName="transparent-icon" />
</div>
<h4 styleName="job-title">{name}</h4>
<h4 styleName="job-title">
{jobTitle && jobTitle.length ? jobTitle : name}
</h4>
<div styleName="button-group">
<Button
type={!showRates ? "segment-selected" : "segment"}
Expand Down