Filled out TODOs

This commit is contained in:
Nicolai Ort 2020-07-10 22:14:25 +02:00
parent cf722381d6
commit 903bc8e8cf
1 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ export abstract class TableComponentBase<T extends ScrumTask | ScrumUserstory |
/**
* Sorts items by number of a provided kay
* @param by TODO:
* @param by table key for figuring out what the table's items are currently sorted by
* @param key property/key to sort the items by
*/
protected doNumericSort(by: string, key: (item: T) => number) {
@ -65,7 +65,7 @@ export abstract class TableComponentBase<T extends ScrumTask | ScrumUserstory |
/**
* Sorts items by string of a provided kay
* @param by TODO:
* @param by table key for figuring out what the table's items are currently sorted by
* @param key property/key to sort the items by
*/
protected doStringSort(by: string, key: (item: T) => string) {
@ -83,7 +83,7 @@ export abstract class TableComponentBase<T extends ScrumTask | ScrumUserstory |
/**
* Sorts items by date of a provided kay
* @param by TODO:
* @param by table key for figuring out what the table's items are currently sorted by
* @param key property/key to sort the items by
*/
protected doDateSort(by: string, key: (item: T) => Date) {