Skip to content

Commit

Permalink
Remove alt tag from tracking pixel image
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Nov 29, 2018
1 parent 2a161a5 commit 09b09d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ func (r *Runner) TemplateFuncs(c *models.Campaign) template.FuncMap {
return r.trackLink(url, campUUID, subUUID)
},
"TrackView": func(campUUID, subUUID string) template.HTML {
return template.HTML(fmt.Sprintf(`<img src="%s" alt="campaign" />`,
return template.HTML(fmt.Sprintf(`<img src="%s" alt="" />`,
fmt.Sprintf(r.cfg.ViewTrackURL, campUUID, subUUID)))
},
"Date": func(layout string) string {
Expand Down

0 comments on commit 09b09d1

Please sign in to comment.