Skip to content

Commit

Permalink
chore: fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
freak12techno committed Jul 14, 2023
1 parent a7892a8 commit c1aa23c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/templates/html.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func (m *Manager) SerializeLink(link types.Link) template.HTML {
return template.HTML(fmt.Sprintf("<a href='%s'>%s</a>", link.Href, link.Text))
}

func (m *Manager) SerializeNotifiers(notifiers []*types.Notifiers) string {
func (m *Manager) SerializeNotifiers(notifiers types.Notifiers) string {
notifiersNormalized := utils.Map(notifiers, m.SerializeNotifier)

return strings.Join(notifiersNormalized, " ")
Expand Down

0 comments on commit c1aa23c

Please sign in to comment.