Skip to content

Commit e1cf6df

Browse files
Merge #434
434: Fix populateEntryRule always return * r=bidoubiwa a=kimiiz55 # Pull Request ## What does this PR do? Fixes #<issue_number> <!-- Please link the issue you're trying to fix with this PR, if none then please create an issue first. --> ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue? - [x] Have you read the contributing guidelines? - [x] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to Meilisearch! Co-authored-by: kimiiz55 <[email protected]>
2 parents fc77153 + 6d17a0a commit e1cf6df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/services/meilisearch/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module.exports = ({ strapi }) => {
4747
const collection = contentTypeService.getCollectionName({ contentType })
4848
const contentTypeConfig = meilisearchConfig[collection] || {}
4949

50-
return contentTypeConfig.populate || '*'
50+
return contentTypeConfig.populateEntryRule || '*'
5151
},
5252

5353
/**

0 commit comments

Comments
 (0)