Skip to content

Commit

Permalink
Merge pull request #446 from fedspendingtransparency/dev-stable
Browse files Browse the repository at this point in the history
Promote dev stable to staging
  • Loading branch information
Bray-Michael-bah authored Oct 4, 2017
2 parents c673b5d + 398755a commit c7792a4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/js/components/search/SearchPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ export default class SearchPage extends React.Component {
{ fullSidebar }
</div>
<SearchResults
filters={this.props.filters}
isMobile={this.state.isMobile}
filterCount={this.state.filterCount}
showMobileFilters={this.state.showMobileFilters}
Expand Down
2 changes: 2 additions & 0 deletions src/js/components/search/SearchResults.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import GeoVisualizationSectionContainer from
import MobileFilters from './mobile/MobileFilters';

const propTypes = {
filters: PropTypes.object,
isMobile: PropTypes.bool,
filterCount: PropTypes.number,
showMobileFilters: PropTypes.bool,
Expand Down Expand Up @@ -88,6 +89,7 @@ export default class SearchResults extends React.Component {
</div>
<div className="mobile-search-sidebar">
<MobileFilters
filters={this.props.filters}
filterCount={this.props.filterCount}
showMobileFilters={this.props.showMobileFilters}
toggleMobileFilters={this.props.toggleMobileFilters} />
Expand Down
2 changes: 2 additions & 0 deletions src/js/components/search/mobile/MobileFilters.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import CSSTransitionGroup from 'react-transition-group/CSSTransitionGroup';
import SearchSidebar from '../SearchSidebar';

const propTypes = {
filters: PropTypes.object,
showMobileFilters: PropTypes.bool,
filterCount: PropTypes.number,
toggleMobileFilters: PropTypes.func
Expand All @@ -22,6 +23,7 @@ export default class MobileFilters extends React.Component {
content = (
<div className="mobile-filter-content">
<SearchSidebar
filters={this.props.filters}
toggleMobileFilters={this.props.toggleMobileFilters}
filterCount={this.props.filterCount}
mobile />
Expand Down

0 comments on commit c7792a4

Please sign in to comment.