Fix reassign to const tag of tags.

master
voussoir 2020-09-08 16:42:44 -07:00
parent 53da81a283
commit c507d5f629
1 changed files with 3 additions and 3 deletions

View File

@ -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;