Fix reassign to const tag of tags.
This commit is contained in:
parent
53da81a283
commit
c507d5f629
1 changed files with 3 additions and 3 deletions
|
@ -495,7 +495,7 @@ function orderby_hide_direction_hook(event)
|
||||||
function simplify_tagnames(tags)
|
function simplify_tagnames(tags)
|
||||||
{
|
{
|
||||||
let new_tags = [];
|
let new_tags = [];
|
||||||
for (const tag of tags)
|
for (let tag of tags)
|
||||||
{
|
{
|
||||||
tag = tag.split(".");
|
tag = tag.split(".");
|
||||||
tag = tag[tag.length - 1];
|
tag = tag[tag.length - 1];
|
||||||
|
@ -557,8 +557,8 @@ function submit_search()
|
||||||
parameters.push(boxname + "=" + value);
|
parameters.push(boxname + "=" + value);
|
||||||
}
|
}
|
||||||
|
|
||||||
orderby_rows = document.getElementsByClassName("search_builder_orderby_li");
|
let orderby_rows = document.getElementsByClassName("search_builder_orderby_li");
|
||||||
orderby_params = [];
|
let orderby_params = [];
|
||||||
for (const orderby_row of orderby_rows)
|
for (const orderby_row of orderby_rows)
|
||||||
{
|
{
|
||||||
let column = orderby_row.children[0].value;
|
let column = orderby_row.children[0].value;
|
||||||
|
|
Loading…
Reference in a new issue