Marketplace custom config for price filter

This commit is contained in:
Vesa Luusua 2018-10-30 22:47:59 +02:00
parent 009f14e2c7
commit eea6b7795c

View file

@ -43,3 +43,11 @@ export const categories = [
{ key: 'wood', label: 'Wood' },
{ key: 'other', label: 'Other' },
];
// Price filter configuration
// Note: unlike most prices this is not handled in subunits
export const priceFilterConfig = {
min: 0,
max: 1000,
step: 5,
};