aboutsummaryrefslogtreecommitdiffstats
path: root/modules/templates/helper.go
diff options
context:
space:
mode:
author赵智超 <1012112796@qq.com>2020-07-03 01:33:13 +0800
committerGitHub <noreply@github.com>2020-07-02 18:33:13 +0100
commitcd994f635427388d4e2abb6612e0b830a8f485b9 (patch)
tree383fe9af2676ccb3014390ce2119bcb69a8a6bc6 /modules/templates/helper.go
parent480ac25ed514d50d4c67f2db6c3d9c9dfb0c8c7b (diff)
downloadgitea-cd994f635427388d4e2abb6612e0b830a8f485b9.tar.gz
gitea-cd994f635427388d4e2abb6612e0b830a8f485b9.zip
Fix ui bug in wiki commit page (#12089)
* Fix ui bug in wiki commit page TODO: Maybe we should allow wiki to have its own ``.editorconfig`` file. Signed-off-by: a1012112796 <1012112796@qq.com> * fix a small nit Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'modules/templates/helper.go')
-rw-r--r--modules/templates/helper.go11
1 files changed, 9 insertions, 2 deletions
diff --git a/modules/templates/helper.go b/modules/templates/helper.go
index ff974aba9f..53354a0d3d 100644
--- a/modules/templates/helper.go
+++ b/modules/templates/helper.go
@@ -164,9 +164,16 @@ func NewFuncMap() []template.FuncMap {
mimeType := mime.TypeByExtension(filepath.Ext(filename))
return strings.HasPrefix(mimeType, "image/")
},
- "TabSizeClass": func(ec *editorconfig.Editorconfig, filename string) string {
+ "TabSizeClass": func(ec interface{}, filename string) string {
+ var (
+ value *editorconfig.Editorconfig
+ ok bool
+ )
if ec != nil {
- def, err := ec.GetDefinitionForFilename(filename)
+ if value, ok = ec.(*editorconfig.Editorconfig); !ok || value == nil {
+ return "tab-size-8"
+ }
+ def, err := value.GetDefinitionForFilename(filename)
if err != nil {
log.Error("tab size class: getting definition for filename: %v", err)
return "tab-size-8"