Skip to content

Commit

Permalink
no row view for references list
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Jan 19, 2021
1 parent 00e36fb commit 7588268
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/search/Search.jsx
Expand Up @@ -320,9 +320,12 @@ class Search extends React.Component {
<span>
<ResultsCountDropDown onChange={this.onLimitChange} defaultLimit={limit} total={totalResults} size={nested ? 'small' : 'medium'} />
</span>
<span style={{paddingLeft: '5px'}}>
{
resource !== 'references' &&
<span style={{paddingLeft: '5px'}}>
<LayoutToggle isTable={isTable} size={nested ? 'small' : 'medium'} onClick={this.onLayoutChange} />
</span>
</span>
}
{
!isTable &&
<span style={{paddingLeft: '5px'}}>
Expand Down

0 comments on commit 7588268

Please sign in to comment.