Skip to content
Snippets Groups Projects

Resolve "[Research] - Sort article by date not working"

Merged Ghost User requested to merge 79-research-sort-article-by-date-not-working into development
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -450,7 +450,7 @@ export class ElasticsearchService {
},
},
{
'content-fr.datePublished': {
'content-fr.published_at': {
order: options.sortOptions.order,
unmapped_type: 'date',
},
@@ -1034,7 +1034,7 @@ export class ElasticsearchService {
if (options.sortDate) {
requestOptions.body['sort'] = [
{
'content-fr.datePublished': { order: 'desc', unmapped_type: 'date' },
'content-fr.published_at': { order: 'desc', unmapped_type: 'date' },
},
];
}
Loading