fixed some small issues
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
f5fca416a9
commit
8bbf4016da
@ -70,6 +70,8 @@ onMounted(() => {
|
||||
const data = docSnap.data()
|
||||
userData.value = data
|
||||
getPersons(userData.value.relatiecodes)
|
||||
} else {
|
||||
setTimeout(() => window.location.reload(true), 1000)
|
||||
}
|
||||
|
||||
if (!userData.value.sendNews && route.path === '/news/newmessage') navigateTo('/')
|
||||
|
@ -132,18 +132,14 @@ const csvToJson = (csv) => {
|
||||
|
||||
for (let i in result) {
|
||||
let groups = []
|
||||
if (Array.isArray(result[i].Verenigingssporten)) {
|
||||
for (let j = 0; j < result[i].Verenigingssporten.length; j++ ) {
|
||||
let tmp = result[i].Verenigingssporten[j].split(' - ')
|
||||
tmp.shift()
|
||||
if (tmp[1] === 'Week') tmp[1] = 'Vrijdag'
|
||||
groups.push(...tmp)
|
||||
}
|
||||
} else {
|
||||
groups = result[i].Verenigingssporten.split(' - ')
|
||||
groups.shift()
|
||||
if (groups[1] === 'Week') groups[1] = 'Vrijdag'
|
||||
}
|
||||
const correctGroups = result[i].Verenigingssporten.replace(/,/g, " -")
|
||||
|
||||
console.log(correctGroups)
|
||||
groups = correctGroups.split(' - ')
|
||||
if (groups[2] === 'Week') groups[2] = 'Vrijdag'
|
||||
|
||||
groups = groups.filter((item) => item !== "Groep")
|
||||
|
||||
ledenlijst.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'] })
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user