fix(tv): Alphabet-Sidebar zeigt nur verfügbare Buchstaben
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
26adabe55c
commit
bce5460fcf
1 changed files with 1 additions and 1 deletions
|
|
@ -248,7 +248,7 @@ function filterByLetter(letter) {
|
|||
avail[/^[A-Z]$/.test(raw) ? raw : '#'] = true;
|
||||
});
|
||||
document.querySelectorAll('.tv-alpha-letter').forEach(function(el) {
|
||||
if (!avail[el.dataset.letter]) el.classList.add('dimmed');
|
||||
if (!avail[el.dataset.letter]) el.remove();
|
||||
});
|
||||
})();
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Reference in a new issue