From c7bb4ab7f8cf39cf761694133d259120dfd7129a Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Wed, 16 Sep 2015 12:37:54 -0700 Subject: [PATCH] Fixing broken email templates --- api/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/api.go b/api/api.go index 3fbb7d0dfb..a5e15b5b07 100644 --- a/api/api.go +++ b/api/api.go @@ -20,7 +20,7 @@ func NewServerTemplatePage(templateName string) *ServerTemplatePage { return &ServerTemplatePage{ TemplateName: templateName, - Props: props := make(map[string]string), + Props: make(map[string]string), ClientProps: utils.ClientProperties, } }