invoice integration

This commit is contained in:
Bilal Catic
2019-07-25 02:00:27 +02:00
parent aeffe86313
commit 71e034b6c2
12 changed files with 548 additions and 65 deletions

View File

@@ -12,6 +12,7 @@ const fetchAllMembers = () => {
cleanedResult.push({
name: member.name,
memberId: member['_id'],
teamId: member.team,
});
});
cleanedResult.sort((member1, member2) => (member1.name > member2.name) ? 1 : -1 );