fix: Update sorting of similar documents

This commit is contained in:
Anton Stubenbord
2023-02-16 17:39:38 +01:00
parent b4a4f0c0da
commit 00b8d045f6
2 changed files with 6 additions and 3 deletions

View File

@@ -8,7 +8,8 @@ enum SortField {
documentType("document_type__name"),
created("created"),
added("added"),
modified("modified");
modified("modified"),
score("score");
final String queryString;