diff --git a/src/core.json b/src/core.json index b225106..58d9aef 100644 --- a/src/core.json +++ b/src/core.json @@ -1259,9 +1259,9 @@ } }, { - "id": "h24ble", + "id": "q24ble", "issue": 7, - "type": "hackathon", + "type": "meta-hackathon", "date": "2024-06-19", "days": 7, "city": "Bled", diff --git a/src/lib/events.js b/src/lib/events.js index 2fe5ed4..9f03191 100644 --- a/src/lib/events.js +++ b/src/lib/events.js @@ -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; } }