5 805
edições
Sem resumo de edição |
Sem resumo de edição |
||
Linha 697: | Linha 697: | ||
} | } | ||
// Ordena as tags em ordem alfabética | // Ordena as tags em ordem alfabética | ||
tags.sort((a, b) => { | |||
const isAExcluded = disabledTags[selectedOption] === a; | |||
const isBExcluded = disabledTags[selectedOption] === b; | |||
if (isAExcluded && !isBExcluded) return -1; | |||
if (!isAExcluded && isBExcluded) return 1; | |||
return a.localeCompare(b); | |||
}); | |||
tagButtons.innerHTML = ''; | tagButtons.innerHTML = ''; | ||
Linha 727: | Linha 734: | ||
tagButtons.appendChild(button); | tagButtons.appendChild(button); | ||
}); | }); | ||
tagButtons.classList.toggle('hidden', tags.length === 0); | tagButtons.classList.toggle('hidden', tags.length === 0); | ||
} | } |