Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions components/SummaryTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ const SummaryTemplate = ({ updateMeetings }: SummaryTemplateProps) => {
peoplePresent: "",
purpose: "",
townHallNumber: "",
googleSlides: "",
meetingVideoLink: "",
miroBoardLink: "",
otherMediaLink: "",
Expand All @@ -93,7 +94,9 @@ const SummaryTemplate = ({ updateMeetings }: SummaryTemplateProps) => {
agenda: "",
status: "carry over",
townHallUpdates: "",
townHallSummary: "",
narrative: "",
gameRules: "",
meetingTopics:[""],
issues: [""],
actionItems: [{ text: "", assignee: "", dueDate: "", status: "todo" }],
Expand Down
3 changes: 2 additions & 1 deletion pages/submit-meeting-summary/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ const SubmitMeetingSummary: NextPage = () => {
"Governance Workgroup": ["narrative", "discussionPoints", "decisionItems", "actionItems"],
"Education Workgroup": ["meetingTopics", "discussionPoints", "decisionItems", "actionItems"],
"Marketing Guild": ["discussionPoints", "decisionItems", "actionItems"],
"Ambassador Town Hall": ["townHallSummary", "discussionPoints", "decisionItems", "actionItems"]
"Ambassador Town Hall": ["townHallSummary", "discussionPoints", "decisionItems", "actionItems"],
"Deep Funding Town Hall": ["townHallSummary", "discussionPoints", "decisionItems", "actionItems"]
};

useEffect(() => {
Expand Down
1 change: 1 addition & 0 deletions utils/getDefaultAgendaItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export const getDefaultAgendaItem = () => ({
agenda: "",
status: "carry over",
townHallUpdates: "",
townHallSummary: "",
narrative: "",
gameRules: "",
leaderboard: [""],
Expand Down
3 changes: 3 additions & 0 deletions utils/updateWorkgroups.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,14 @@ export async function updateWorkgroups(workgroupData) {
"agenda":0,
"status":0,
"narrative":0,
"townHallUpdates": 0,
"townHallSummary": 0,
"meetingTopics":0,
"issues":0,
"actionItems":1,
"decisionItems":1,
"discussionPoints":1,
"gameRules": 0,
"learningPoints":0,
}
],
Expand Down