We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4189e09 commit 23699a5Copy full SHA for 23699a5
packages/app/src/app/pages/Search/Filters/index.js
@@ -8,14 +8,17 @@ import Sort from './Filter/Sort';
8
9
const Filters = () => (
10
<Container>
11
- <Sort
12
- defaultRefinement={ALGOLIA_DEFAULT_INDEX}
13
- items={[
14
- { value: ALGOLIA_DEFAULT_INDEX, label: 'Views' },
15
- { value: `${ALGOLIA_DEFAULT_INDEX}_date`, label: 'Date' },
16
- ]}
17
- title="Sort By"
18
- />
+ {/* Enable once our index is back online */}
+ {false && (
+ <Sort
+ defaultRefinement={ALGOLIA_DEFAULT_INDEX}
+ items={[
+ { value: ALGOLIA_DEFAULT_INDEX, label: 'Views' },
+ { value: `${ALGOLIA_DEFAULT_INDEX}_date`, label: 'Date' },
+ ]}
19
+ title="Sort By"
20
+ />
21
+ )}
22
23
<Filter
24
attributeName="template"
0 commit comments