File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,9 @@ type Meeting struct {
4040
4141// Contact struct to hold contact information.
4242type Contact struct {
43- Slack string `yaml:"slack"`
44- MailingList string `yaml:"mailing_list"`
45- TOCLiaison Person `yaml:"toc_liaison"`
43+ Slack string `yaml:"slack"`
44+ MailingList string `yaml:"mailing_list"`
45+ TOCLiaison [] Person `yaml:"toc_liaison"` // FIXED: Changed from 'Person' to '[]Person'
4646}
4747
4848// Tag struct to hold tag data, including CharterLink and Subprojects.
Original file line number Diff line number Diff line change 3030## Contact
3131- Slack: [Tag {{.Name}} Slack](https://cloud-native.slack.com/archives/{{.Contact.Slack}})
3232- [Mailing List]({{.Contact.MailingList}})
33- - TOC Liaison: {{.Contact.TOCLiaison.Name}} (**[@{{.Contact.TOCLiaison.GitHub}}](https://github.com/{{.Contact.TOCLiaison.GitHub}})**)
33+ {{- range .Contact.TOCLiaison }}
34+ - TOC Liaison: {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**)
35+ {{- end }}
3436
3537## Subprojects
3638{{- range .TagSubprojects }}
Original file line number Diff line number Diff line change 3030## Contact
3131- Slack: [Tag {{.Name}} Slack](https://cloud-native.slack.com/archives/{{.Contact.Slack}})
3232- [Mailing List]({{.Contact.MailingList}})
33- - TOC Liaison: {{.Contact.TOCLiaison.Name}} (**[@{{.Contact.TOCLiaison.GitHub}}](https://github.com/{{.Contact.TOCLiaison.GitHub}})**)
33+ {{- range .Contact.TOCLiaison }}
34+ - TOC Liaison: {{.Name}} (**[@{{.GitHub}}](https://github.com/{{.GitHub}})**)
35+ {{- end }}
3436
3537{{- if .Leadership.SubprojectLeads }}
3638### Subproject Leads
You can’t perform that action at this time.
0 commit comments