Hi
If I’m reading the docs correctly I should be able to change the show more/less text in the refinement widget by using the templates property. This however does not appear to be working. So what am I missing? Can this not be done unless you create a custom Refinement List widget?
My component code is as follows:
<RefinementList
attribute="topics"
limit={1}
showMore={true}
templates={{
showMoreText: `
{{#isShowingMore}}
Less
{{/isShowingMore}}
{{^isShowingMore}}
More
{{/isShowingMore}}
`,
}}
/>