diff --git a/pages/town-hall.js b/pages/town-hall.js index cd28b85f..70c32d89 100644 --- a/pages/town-hall.js +++ b/pages/town-hall.js @@ -189,8 +189,9 @@ function TownHall() { {townHall.status ? (

- The {townHall.quarter} Town Hall took place on {townHall.date} (Week {townHall.week}) - at {townHall.time} PT in the {townHall.location}. + The {townHall.quarter} Town Hall took place on{' '} + {townHall.date} (Week {townHall.week}) at{' '} + {townHall.time} PT in the {townHall.location}.

) : (

{townHall.status_text}

@@ -344,7 +345,25 @@ function TownHall() { Event Notes - + {' '} + {pastTownHall.results && ( +
  • + + + {' '} + Survey Results + + +
  • + )}
    diff --git a/scripts/town-hall-generator.mjs b/scripts/town-hall-generator.mjs index a2336472..77eb3a06 100644 --- a/scripts/town-hall-generator.mjs +++ b/scripts/town-hall-generator.mjs @@ -57,7 +57,7 @@ async function fetchTownHallData() { } async function fetchPastTownHallData() { - const data = await getGoogleSheetData('PastTownHalls!A3:G'); + const data = await getGoogleSheetData('PastTownHalls!A3:H'); // Format the rows into an array of objects const formattedData = data.map((row) => ({ @@ -68,6 +68,7 @@ async function fetchPastTownHallData() { notes: row[4], banner: row[5], alt_text: row[6], + results: row[7], })); return formattedData;