Fix default getPerPage for 'md' widths
This commit is contained in:
parent
48a6ba2956
commit
b8d47d1db4
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ import get from 'lodash.get'
|
||||||
const getPerPage = (width) => {
|
const getPerPage = (width) => {
|
||||||
if (width === 'xs') return 12
|
if (width === 'xs') return 12
|
||||||
if (width === 'sm') return 12
|
if (width === 'sm') return 12
|
||||||
if (width === 'md') return 15
|
if (width === 'md') return 12
|
||||||
if (width === 'lg') return 18
|
if (width === 'lg') return 18
|
||||||
return 36
|
return 36
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue