Skip to content

Commit

Permalink
Merge pull request #1228 from MetaPhase-Consulting/feature/number-of-…
Browse files Browse the repository at this point in the history
…candidates

count added to header TM-2038
  • Loading branch information
elizabeth-jimenez committed Nov 4, 2020
2 parents f0bf09d + 4edc7b4 commit 0a49aae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ class PositionManagerBidders extends Component {
<>
<div className="list-toggle-container">
<InteractiveElement title="Toggle visibility" onClick={() => this.toggleVisibility('shortListVisible')}><FA name={shortListVisible ? 'chevron-down' : 'chevron-up'} /></InteractiveElement>
<h3>Short List</h3>
<h3>Short List ({this.state.shortList.length})</h3>
</div>
{
shortListVisible &&
Expand Down Expand Up @@ -330,7 +330,7 @@ class PositionManagerBidders extends Component {

<div className="list-toggle-container">
<InteractiveElement title="Toggle visibility" onClick={() => this.toggleVisibility('unrankedVisible')}><FA name={unrankedVisible ? 'chevron-down' : 'chevron-up'} /></InteractiveElement>
<h3>Candidates</h3>
<h3>Candidates ({this.state.unranked.length})</h3>
</div>
{
unrankedVisible &&
Expand Down

0 comments on commit 0a49aae

Please sign in to comment.