Skip to content

Commit 1d7785f

Browse files
authored
Merge pull request #274 from BimberLab/23.11_newSortFieldNames
Adjust sort field name
2 parents 2869441 + 2a84672 commit 1d7785f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbrowse/src/org/labkey/jbrowse/JBrowseLuceneSearch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ else if (numericQueryParserFields.containsKey(fieldName))
245245
throw new IllegalArgumentException("Could not find type for sort field: " + sortField);
246246
}
247247

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

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

0 commit comments

Comments
 (0)