Skip to content

Commit

Permalink
Fix Task Sort (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
darenegade authored Jun 14, 2023
1 parent cdfbb5f commit 7bc3415
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class PagingAndSorting {
/**
* Default sort column.
*/
public static final String DEFAULT_SORT = "-createdTime";
public static final String DEFAULT_SORT = "-createTime";

public String getSanitizedSort() {
if (sort == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void retrieves_tasks_for_user() {
true,
0,
100,
"-createdTime",
"-createTime",
Lists.newArrayList("task.textSearch%" + query)
));
}
Expand Down Expand Up @@ -84,7 +84,7 @@ void retrieves_tasks_for_group() {
true,
0,
100,
"-createdTime",
"-createTime",
Lists.newArrayList("task.textSearch%" + query)
));
}
Expand Down

0 comments on commit 7bc3415

Please sign in to comment.