Fixes an issue where sorting was tried with undefined valued

Hot-Fixes agenda sorting
This commit is contained in:
Sean Engelhardt 2019-05-22 18:35:58 +02:00
parent f52ca7d941
commit c3c98f06e3
1 changed files with 9 additions and 1 deletions

View File

@ -57,7 +57,15 @@ export class ItemRepositoryService extends BaseRepository<ViewItem, Item> {
MotionBlock
]);
this.setSortFunction((a, b) => a.weight - b.weight);
this.setSortFunction((a, b) => {
// TODO: In some occasions weight will be undefined, if the user has not the correct set of permission.
// That should not be the case here.
if (a.weight && b.weight) {
return a.weight - b.weight;
} else {
return -1;
}
});
}
public getVerboseName = (plural: boolean = false) => {