Skip to content

Commit 7efd1fd

Browse files
author
vvo
committed
fix(getRefinements): a name should be a string
+ ignore a new react plugin rule (no multi comp)
1 parent e55e593 commit 7efd1fd

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

src/components/CurrentRefinedValues/__tests__/CurrentRefinedValues-test.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/* eslint-env mocha */
2+
/* eslint react/no-multi-comp: 0 */
23

34
import React from 'react';
45
import expect from 'expect';

src/lib/utils.js

+1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ function getRefinements(results, state) {
181181
forEach(state.numericRefinements, (operators, attributeName) => {
182182
forEach(operators, (values, operator) => {
183183
forEach(values, (name) => {
184+
name = name + '';
184185
res.push({type: 'numeric', attributeName, name, operator});
185186
});
186187
});

src/widgets/current-refined-values/__tests__/current-refined-values-test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -488,10 +488,10 @@ describe('currentRefinedValues()', () => {
488488
{type: 'disjunctive', attributeName: 'disjunctiveFacet', name: 'disjunctiveFacet-val1', count: 3, exhaustive: true},
489489
{type: 'disjunctive', attributeName: 'disjunctiveFacet', name: 'disjunctiveFacet-val2', count: 4, exhaustive: true},
490490
{type: 'hierarchical', attributeName: 'hierarchicalFacet', name: 'hierarchicalFacet-val2', count: 6, exhaustive: true},
491-
{type: 'numeric', attributeName: 'numericFacet', name: 1, operator: '>='},
492-
{type: 'numeric', attributeName: 'numericFacet', name: 2, operator: '<='},
493-
{type: 'numeric', attributeName: 'numericDisjunctiveFacet', name: 3, operator: '>='},
494-
{type: 'numeric', attributeName: 'numericDisjunctiveFacet', name: 4, operator: '<='},
491+
{type: 'numeric', attributeName: 'numericFacet', name: '1', operator: '>='},
492+
{type: 'numeric', attributeName: 'numericFacet', name: '2', operator: '<='},
493+
{type: 'numeric', attributeName: 'numericDisjunctiveFacet', name: '3', operator: '>='},
494+
{type: 'numeric', attributeName: 'numericDisjunctiveFacet', name: '4', operator: '<='},
495495
{type: 'tag', attributeName: '_tags', name: 'tag1'},
496496
{type: 'tag', attributeName: '_tags', name: 'tag2'}
497497
];

0 commit comments

Comments
 (0)