meta-hackathons

This commit is contained in:
tree🌴 2024-03-16 03:59:14 +01:00
parent 99fb660842
commit 771208d3af
2 changed files with 6 additions and 2 deletions

View File

@ -1259,9 +1259,9 @@
}
},
{
"id": "h24ble",
"id": "q24ble",
"issue": 7,
"type": "hackathon",
"type": "meta-hackathon",
"date": "2024-06-19",
"days": 7,
"city": "Bled",

View File

@ -6,6 +6,7 @@ export const types = [
{ id: "summit", name: 'Summit', plural: 'Summits' },
{ id: "privacy-corner", name: 'Privacy Corner', plural: 'Privacy Corners' },
{ id: "online-summit", name: 'Online Summit', plural: 'Online Summits' },
{ id: 'meta-hackathon', name: 'Meta-hackathon', plural: 'Meta-hacktahons'},
]
export const countryNames = {
@ -73,6 +74,9 @@ export function nameRenderer (item, full = false) {
case 'online-summit':
return "ONLINE Summit" + (item['name-extension'] ? ' ' + item['name-extension'] : '') + (full ? ` ${date.year}` : '');
break;
case 'meta-hackathon':
return `Meta-hackathon ${item.city}` + (full ? ` ${date.year}`: '')
break;
}
}