mirror of https://github.com/ColorlibHQ/AdminLTE
Fix Bug for encoding URI (#4207)
Encoded URI: http%3A%2F%2F127.0.0.1%3A8001%2F Decoded URI: http://127.0.0.1:8001/pull/4208/head
parent
0c983d5623
commit
0b6c1339ea
|
@ -187,7 +187,7 @@ class SidebarSearch {
|
|||
}
|
||||
|
||||
const groupItemElement = $('<a/>', {
|
||||
href: link,
|
||||
href: decodeURIComponent(link),
|
||||
class: 'list-group-item'
|
||||
})
|
||||
const searchTitleElement = $('<div/>', {
|
||||
|
|
Loading…
Reference in New Issue