Fixed selected nav item. Added lazy loading for WS client to resolve token issue. Added some filtering to jobs list.
This commit is contained in:
9
client/src/utils/sorters.js
Normal file
9
client/src/utils/sorters.js
Normal file
@@ -0,0 +1,9 @@
|
||||
export function alphaSort(a, b) {
|
||||
if (a > b) {
|
||||
return false;
|
||||
}
|
||||
if (b > a) {
|
||||
return true;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
Reference in New Issue
Block a user