RC-63 | Display skills in sheet
This commit is contained in:
parent
df35c00c5d
commit
1302d91469
9 changed files with 142 additions and 24 deletions
|
|
@ -5,3 +5,13 @@ export function filePath(path) {
|
|||
};
|
||||
return `systems/ripcrypt/${path}`;
|
||||
};
|
||||
|
||||
// MARK: documentSorter
|
||||
export function documentSorter(a, b) {
|
||||
const sortDelta = b.sort - a.sort;
|
||||
if (sortDelta !== 0) {
|
||||
return sortDelta;
|
||||
};
|
||||
// TODO alphabetical sort
|
||||
return 0;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue