Commit 3bfc9e65 authored by unknown's avatar unknown
Browse files

Correção no filtro para editais que só possuem adHoc

parent 3e782b87
......@@ -2275,9 +2275,8 @@
//console.log(seletor[0].children[0].text)=
function buscar(input) {
if(document.getElementById('exampleFormControlSelect2') != null){
let seletor1 = document.getElementById('exampleFormControlSelect2').children;
let seletor2 = document.getElementById('exampleFormControlSelect3').children;
for(let i = 0; i < seletor1.length; i++){
let nomeAval1 = seletor1[i].textContent
......@@ -2288,9 +2287,12 @@
}else {
seletor1[i].style.display = "none";
}
}
}
let seletor2 = document.getElementById('exampleFormControlSelect3').children;
for(let j = 0; j < seletor2.length; j++){
let nomeAval1 = seletor2[j].textContent
......
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