Un-lambda base.FileSize (#7556)

No need to wrap this.
pull/7555/head^2
Christian Muehlhaeuser 2019-07-22 10:58:26 +02:00 committed by Lauris BH
parent 12a098920c
commit 9a965035f0
1 changed files with 2 additions and 4 deletions

View File

@ -93,10 +93,8 @@ func NewFuncMap() []template.FuncMap {
"DateFmtShort": func(t time.Time) string {
return t.Format("Jan 02, 2006")
},
"SizeFmt": func(s int64) string {
return base.FileSize(s)
},
"List": List,
"SizeFmt": base.FileSize,
"List": List,
"SubStr": func(str string, start, length int) string {
if len(str) == 0 {
return ""