File tree 1 file changed +4
-4
lines changed
widgets/hits-per-page-selector
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ let React = require('react');
2
2
let ReactDOM = require ( 'react-dom' ) ;
3
3
4
4
let utils = require ( '../../lib/utils.js' ) ;
5
- let reduce = require ( 'lodash/collection/reduce ' ) ;
5
+ let any = require ( 'lodash/collection/any ' ) ;
6
6
let bem = utils . bemHelper ( 'ais-hits-per-page-selector' ) ;
7
7
let cx = require ( 'classnames' ) ;
8
8
let autoHideContainer = require ( '../../decorators/autoHideContainer' ) ;
@@ -40,9 +40,9 @@ function hitsPerPageSelector({
40
40
41
41
return {
42
42
init : function ( state ) {
43
- let isCurrentInOptions = reduce ( options , function ( res , option ) {
44
- return res || + state . hitsPerPage === + option . value ;
45
- } , false ) ;
43
+ let isCurrentInOptions = any ( options , function ( option ) {
44
+ return + state . hitsPerPage === + option . value ;
45
+ } ) ;
46
46
47
47
if ( ! isCurrentInOptions ) {
48
48
options = [ { value : undefined , label : '' } ] . concat ( options ) ;
You can’t perform that action at this time.
0 commit comments