mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
meta-hackathons
This commit is contained in:
parent
99fb660842
commit
771208d3af
2 changed files with 6 additions and 2 deletions
|
@ -1259,9 +1259,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "h24ble",
|
"id": "q24ble",
|
||||||
"issue": 7,
|
"issue": 7,
|
||||||
"type": "hackathon",
|
"type": "meta-hackathon",
|
||||||
"date": "2024-06-19",
|
"date": "2024-06-19",
|
||||||
"days": 7,
|
"days": 7,
|
||||||
"city": "Bled",
|
"city": "Bled",
|
||||||
|
|
|
@ -6,6 +6,7 @@ export const types = [
|
||||||
{ id: "summit", name: 'Summit', plural: 'Summits' },
|
{ id: "summit", name: 'Summit', plural: 'Summits' },
|
||||||
{ id: "privacy-corner", name: 'Privacy Corner', plural: 'Privacy Corners' },
|
{ id: "privacy-corner", name: 'Privacy Corner', plural: 'Privacy Corners' },
|
||||||
{ id: "online-summit", name: 'Online Summit', plural: 'Online Summits' },
|
{ id: "online-summit", name: 'Online Summit', plural: 'Online Summits' },
|
||||||
|
{ id: 'meta-hackathon', name: 'Meta-hackathon', plural: 'Meta-hacktahons'},
|
||||||
]
|
]
|
||||||
|
|
||||||
export const countryNames = {
|
export const countryNames = {
|
||||||
|
@ -73,6 +74,9 @@ export function nameRenderer (item, full = false) {
|
||||||
case 'online-summit':
|
case 'online-summit':
|
||||||
return "ONLINE Summit" + (item['name-extension'] ? ' ' + item['name-extension'] : '') + (full ? ` ${date.year}` : '');
|
return "ONLINE Summit" + (item['name-extension'] ? ' ' + item['name-extension'] : '') + (full ? ` ${date.year}` : '');
|
||||||
break;
|
break;
|
||||||
|
case 'meta-hackathon':
|
||||||
|
return `Meta-hackathon ${item.city}` + (full ? ` ${date.year}`: '')
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue