Skip to content

Commit

Permalink
Add missing sort mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-ronge committed May 29, 2024
1 parent 1089266 commit 05930aa
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public class ProjectService extends SearchDatabaseService<Project, ProjectDAO>

static {
SORT_FIELD_MAPPING = new HashMap<>();
SORT_FIELD_MAPPING.put("title", "title");
SORT_FIELD_MAPPING.put("title.keyword", "title");
SORT_FIELD_MAPPING.put("metsRightsOwner.keyword", "metsRightsOwner");
SORT_FIELD_MAPPING.put("active", "active");
Expand Down

0 comments on commit 05930aa

Please sign in to comment.