Show the filterable and not the faceted attributes in the settings

This commit is contained in:
Clément Renault 2021-07-09 16:11:37 +02:00
parent 5c9401ad94
commit f49a01703a
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4

View File

@ -69,7 +69,7 @@ impl Index {
.searchable_fields(&txn)?
.map(|fields| fields.into_iter().map(String::from).collect());
let faceted_attributes = self.faceted_fields(&txn)?.into_iter().collect();
let filterable_attributes = self.filterable_fields(&txn)?.into_iter().collect();
let criteria = self
.criteria(&txn)?
@ -102,7 +102,7 @@ impl Index {
Ok(Settings {
displayed_attributes: Some(displayed_attributes),
searchable_attributes: Some(searchable_attributes),
filterable_attributes: Some(Some(faceted_attributes)),
filterable_attributes: Some(Some(filterable_attributes)),
ranking_rules: Some(Some(criteria)),
stop_words: Some(Some(stop_words)),
distinct_attribute: Some(distinct_field),