Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion components/SearchBar/SearchBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class SearchBar extends Component {
}

SearchBar.propTypes = {
hideSuggestionsWhenEmpty: PropTypes.func.bool,
hideSuggestionsWhenEmpty: PropTypes.bool,
onSearch : PropTypes.func.isRequired,
onClearSearch : PropTypes.func,
onTermChange : PropTypes.func.isRequired,
Expand Down
2 changes: 1 addition & 1 deletion components/SearchSuggestions/SearchSuggestions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class SearchSuggestions extends Component {

const recentSearches = !recentList ? '' : (
<div className="recent-search-suggestions">
<Panel>
<Panel showHeader={this.props.showPopularSearchHeader}>
<div className="panel-header">
<div className="label">Recent Search</div>
<div className="recent-search-panel-actions transition">
Expand Down
3 changes: 2 additions & 1 deletion components/SwitchButton/SwitchButton.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.SwitchButton {
position: relative;
display: flex;
align-items: center;
.label{
width: 92px;
line-height: 20px;
Expand All @@ -11,9 +12,9 @@
color: $tc-gray-60;
}
label{
display: flex;
margin: 0;
padding: 0;
display: block;
height: 20px;
margin-top: 5px;
}
Expand Down