Added base jobline edit modal. To be confirmed if required.
This commit is contained in:
@@ -2,10 +2,7 @@ export function alphaSort(a, b) {
|
||||
let A;
|
||||
let B;
|
||||
A = a ? a.toLowerCase() : "";
|
||||
|
||||
B = b ? b.toLowerCase() : "";
|
||||
console.log("Objects", A, B, A < B, A > B);
|
||||
|
||||
if (A < B)
|
||||
//sort string ascending
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user