|
|
@@ -71,9 +71,11 @@ public class PersonTextServiceImpl implements PersonTextService {
|
|
|
}
|
|
|
|
|
|
private Sort getSort() {
|
|
|
- return Sort.by(Sort.Direction.ASC, "person")
|
|
|
+ return Sort.by(Sort.Direction.ASC, "person.lastName")
|
|
|
+ .and(Sort.by(Sort.Direction.ASC, "person.firstName")
|
|
|
+ .and(Sort.by(Sort.Direction.ASC, "person.firstName")
|
|
|
.and(Sort.by(Sort.Direction.ASC, "order")
|
|
|
- .and(Sort.by(Sort.Direction.ASC, "level")));
|
|
|
+ .and(Sort.by(Sort.Direction.ASC, "level")))));
|
|
|
}
|
|
|
|
|
|
@Override
|