Fix default getPerPage for 'md' widths

This commit is contained in:
Steve Richter 2020-11-20 22:10:56 -05:00 committed by Deluan Quintão
parent 48a6ba2956
commit b8d47d1db4
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import get from 'lodash.get'
const getPerPage = (width) => {
if (width === 'xs') return 12
if (width === 'sm') return 12
if (width === 'md') return 15
if (width === 'md') return 12
if (width === 'lg') return 18
return 36
}