Fixed wedstrijdteam issue
All checks were successful
Build and Deploy / Deploy (push) Successful in 2m37s

This commit is contained in:
Xeovalyte 2023-09-17 12:58:28 +02:00
parent fd2e576ece
commit 224ad78f0f

View File

@ -175,8 +175,12 @@ const csvToJson = (csv) => {
})
if (groups[2] === 'Week') groups[2] = 'Vrijdag'
const inwedstrijdteam = usersStore.ledenlijst.filter(x => x.relatiecode === result[i].Relatiecode)[0].wedstrijdteam;
newLedenlijst.value.push({ relatiecode: result[i].Relatiecode, fullName: result[i]['Volledige naam (1)'], email: [result[i]['E-mail'], result[i]['2e E-mail']], groups: [...new Set(groups)], diploma: result[i]['Diploma dropdown 1'] })
const wedstrijdteam = inwedstrijdteam ? true : false
newLedenlijst.value.push({ relatiecode: result[i].Relatiecode, wedstrijdteam, fullName: result[i]['Volledige naam (1)'], email: [result[i]['E-mail'], result[i]['2e E-mail']], groups: [...new Set(groups)], diploma: result[i]['Diploma dropdown 1'] })
}
uploadLedenlijst()
}