Fix mailto on crash page

This commit is contained in:
Ben Visness 2022-06-01 20:49:19 -05:00
parent 13f5b2ee63
commit 1cfb9e4033
3 changed files with 11 additions and 11 deletions

View File

@ -9,7 +9,7 @@
<span class="big"> <span class="big">
We have encountered an error while processing your request. We have encountered an error while processing your request.
<br /> <br />
If this keeps happening, please <a href="{{ .ReportIssueMailto }}">let us know</a>. If this keeps happening, please <a href="mailto:{{ .ReportIssueEmail }}">let us know</a>.
</span> </span>
</p> </p>
</div> </div>

View File

@ -6,15 +6,15 @@ import (
) )
type BaseData struct { type BaseData struct {
Title string Title string
CanonicalLink string CanonicalLink string
OpenGraphItems []OpenGraphItem OpenGraphItems []OpenGraphItem
BackgroundImage BackgroundImage BackgroundImage BackgroundImage
Theme string Theme string
BodyClasses []string BodyClasses []string
Breadcrumbs []Breadcrumb Breadcrumbs []Breadcrumb
Notices []Notice Notices []Notice
ReportIssueMailto string ReportIssueEmail string
CurrentUrl string CurrentUrl string
CurrentProjectUrl string CurrentProjectUrl string

View File

@ -56,7 +56,7 @@ func getBaseData(c *RequestContext, title string, breadcrumbs []templates.Breadc
Session: templateSession, Session: templateSession,
Notices: notices, Notices: notices,
ReportIssueMailto: "team@handmade.network", ReportIssueEmail: "team@handmade.network",
OpenGraphItems: buildDefaultOpenGraphItems(&project, c.CurrentProjectLogoUrl, title), OpenGraphItems: buildDefaultOpenGraphItems(&project, c.CurrentProjectLogoUrl, title),