@Effect()
  resetVideosAfterParamUpdate$ = this.actions$.pipe(
    ofType(fromPlayerSearch.PlayerSearchActions.UPDATE_QUERY_PARAM),
    map(() => this.playerSearchActions.resetResults())
  );