Skip to content

Commit

Permalink
Adjust sort field name
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Benjamin authored and bbimber committed May 6, 2024
1 parent 2869441 commit 2a84672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jbrowse/src/org/labkey/jbrowse/JBrowseLuceneSearch.java
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ else if (numericQueryParserFields.containsKey(fieldName))
throw new IllegalArgumentException("Could not find type for sort field: " + sortField);
}

sort = new Sort(new SortField(sortField, fieldType, sortReverse));
sort = new Sort(new SortField(sortField + "_sort", fieldType, sortReverse));
}

// Get chunks of size {pageSize}. Default to 1 chunk -- add to the offset to get more.
Expand Down

0 comments on commit 2a84672

Please sign in to comment.