Skip to content

Commit

Permalink
fix: fix values for topLimit option (#579)
Browse files Browse the repository at this point in the history
They are numeric values, not strings.
  • Loading branch information
edoardo committed Jan 29, 2020
1 parent 2faae50 commit 3d249a6
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ const TopLimit = () => (
option={{
name: 'topLimit',
items: [
{ id: '0', label: i18n.t('None') },
{ id: '5', label: '5' },
{ id: '10', label: '10' },
{ id: '20', label: '20' },
{ id: '50', label: '50' },
{ id: '100', label: '100' },
{ id: 0, label: i18n.t('None') },
{ id: 5, label: '5' },
{ id: 10, label: '10' },
{ id: 20, label: '20' },
{ id: 50, label: '50' },
{ id: 100, label: '100' },
],
}}
/>
Expand Down

0 comments on commit 3d249a6

Please sign in to comment.