Unverified Commit ea42c010 authored by Eric_Lee's avatar Eric_Lee Committed by GitHub

Merge pull request #181 from jumpserver/dev_bugfix

[Bugfix] fix chinese word search
parents ed0f5a68 637e43c3
......@@ -16,7 +16,7 @@ func GetUserAssets(userID string, pageSize, offset int, searches ...string) (res
paramsArray := make([]map[string]string, 0, len(searches)+2)
for i := 0; i < len(searches); i++ {
paramsArray = append(paramsArray, map[string]string{
"search": url.QueryEscape(searches[i]),
"search": searches[i],
})
}
params := map[string]string{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment