.sort((a, b) => {
let modifier = 1;
if (this.currentSortDirection === 'desc') modifier = -1;
if (a[this.currentSort] < b[this.currentSort]) return -1 * modifier;
if (a[this.currentSort] > b[this.currentSort]) return 1 * modifier;
return 0;
});