Skip to content

Commit

Permalink
[ACS-4125] Add support for the tags search facet (#3070)
Browse files Browse the repository at this point in the history
* ACS-4125 Display tags facets in search

* Added new config options

---------

Co-authored-by: Aleksander Sklorz <Aleksander.Sklorz@hyland.com>
  • Loading branch information
Thomas Hunter and AleksanderSklorz committed Mar 24, 2023
1 parent 73a4c95 commit 2067ad8
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions projects/aca-content/assets/app.extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -1329,7 +1329,8 @@
"label": "SEARCH.FACET_FIELDS.FILE_TYPE",
"settings": {
"allowUpdateOnChange": false,
"hideDefaultAction": true
"hideDefaultAction": true,
"facetOrder": 100
}
},
{
Expand All @@ -1338,7 +1339,8 @@
"label": "SEARCH.FACET_FIELDS.CREATOR",
"settings": {
"allowUpdateOnChange": false,
"hideDefaultAction": true
"hideDefaultAction": true,
"facetOrder": 200
}
},
{
Expand All @@ -1347,7 +1349,8 @@
"label": "SEARCH.FACET_FIELDS.MODIFIER",
"settings": {
"allowUpdateOnChange": false,
"hideDefaultAction": true
"hideDefaultAction": true,
"facetOrder": 300
}
},
{
Expand All @@ -1356,7 +1359,20 @@
"label": "SEARCH.FACET_FIELDS.LOCATION",
"settings": {
"allowUpdateOnChange": false,
"hideDefaultAction": true
"hideDefaultAction": true,
"facetOrder": 400
}
},
{
"mincount": 1,
"field": "TAG",
"label": "Tags",
"settings": {
"allowUpdateOnChange": false,
"hideDefaultAction": true,
"facetOrder": 600,
"bucketSortBy": "LABEL",
"bucketSortDirection": "ASCENDING"
}
}
]
Expand Down Expand Up @@ -1388,7 +1404,8 @@
],
"settings": {
"allowUpdateOnChange": false,
"hideDefaultAction": true
"hideDefaultAction": true,
"facetOrder": 500
}
},
"categories": [
Expand Down

0 comments on commit 2067ad8

Please sign in to comment.