Commit 9ce74b65 authored by Brian Hatchet's avatar Brian Hatchet 💬
Browse files

Merge branch 'change-to-one-year-suggested-groups-and-channels-filter' into 'release/3.15.0'

Change to one year suggested groups and channel filter

See merge request !488
parents d44d235d f0fbbaa6
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -27,7 +27,7 @@ export default class SuggestedChannelsStepNew extends Component {


    this.props.discovery.init();
    this.props.discovery.init();
    this.props.discovery.filters.setType('channels');
    this.props.discovery.filters.setType('channels');
    this.props.discovery.filters.setPeriod('30d');
    this.props.discovery.filters.setPeriod('1y');
  }
  }


  /**
  /**
+1 −1
Original line number Original line Diff line number Diff line
@@ -28,7 +28,7 @@ export default class SuggestedGroupsStepNew extends Component {
  
  
  componentDidMount() {
  componentDidMount() {
    this.props.discovery.filters.setType('groups');
    this.props.discovery.filters.setType('groups');
    this.props.discovery.filters.setPeriod('30d');
    this.props.discovery.filters.setPeriod('1y');
  }
  }


  renderGroup = (group, i) => {
  renderGroup = (group, i) => {