From ec95b922cf3f5a27480934f058837dfa218c77f5 Mon Sep 17 00:00:00 2001 From: Azareal Date: Mon, 11 Nov 2019 17:04:11 +1000 Subject: [PATCH] fix the search and filter widget --- common/files.go | 1 + 1 file changed, 1 insertion(+) diff --git a/common/files.go b/common/files.go index 9c2d110c..6c9d9710 100644 --- a/common/files.go +++ b/common/files.go @@ -178,6 +178,7 @@ func (list SFileList) JSTmplInit() error { data = replace(data, "w.Write([]byte(", "out += ") data = replace(data, "w.Write(StringToBytes(", "out += ") data = replace(data, "w.Write(", "out += ") + data = replace(data, "+= c.", "+= ") data = replace(data, "strconv.Itoa(", "") data = replace(data, "strconv.FormatInt(", "") data = replace(data, " c.", "")