Skip to content

Commit

Permalink
Fix more matches render issue
Browse files Browse the repository at this point in the history
  • Loading branch information
davkal committed May 10, 2016
1 parent 22d9f7c commit 452020d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/app/scripts/components/matched-results.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ class MatchedResults extends React.Component {
return (
<div className="matched-results">
{matches.keySeq().take(SHOW_ROW_COUNT).map(fieldId => this.renderMatch(matches, fieldId))}
{moreFieldMatches && <span className="matched-results-more" title={moreFieldMatchesTitle}>
{moreFieldMatches && <div className="matched-results-more" title={moreFieldMatchesTitle}>
{`${moreFieldMatches.size} more matches`}
</span>}
</div>}
</div>
);
}
Expand Down
3 changes: 1 addition & 2 deletions client/app/styles/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -535,8 +535,7 @@ h2 {
text-transform: uppercase;
font-size: 0.6rem;
color: darken(@weave-blue, 10%);
position: relative;
top: -2px;
margin-top: -2px;
}
}

Expand Down

0 comments on commit 452020d

Please sign in to comment.