From 2d0ab393a74f768ab3d106eda70e181d4bfa1fa8 Mon Sep 17 00:00:00 2001 From: binimum <61615730+binimum@users.noreply.github.com> Date: Mon, 16 Feb 2026 18:20:50 +0000 Subject: [PATCH] style: auto-fix linting issues --- js/lyrics.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/lyrics.js b/js/lyrics.js index f95dffe..922b2eb 100644 --- a/js/lyrics.js +++ b/js/lyrics.js @@ -934,7 +934,7 @@ function getLyricsHighlightColor() { function updateLyricsTheme() { const highlightColor = getLyricsHighlightColor(); - document.querySelectorAll('am-lyrics').forEach(el => { + document.querySelectorAll('am-lyrics').forEach((el) => { el.setAttribute('highlight-color', highlightColor); }); } @@ -946,7 +946,7 @@ const themeObserver = new MutationObserver(() => { themeObserver.observe(document.documentElement, { attributes: true, - attributeFilter: ['data-theme', 'style'] + attributeFilter: ['data-theme', 'style'], }); async function renderLyricsComponent(container, track, audioPlayer, lyricsManager) {