style: auto-fix linting issues

This commit is contained in:
tryptz 2026-04-07 09:07:55 +00:00 committed by edideaur
parent 4c35bed3f2
commit bee43e7e89
2 changed files with 3 additions and 2 deletions

View file

@ -4163,7 +4163,8 @@
<div class="info">
<span class="label">EQ Studio</span>
<span class="description"
>Multi-mode equalizer with AutoEQ, M/S processing &amp; room correction</span
>Multi-mode equalizer with AutoEQ, M/S processing &amp; room
correction</span
>
</div>
<label class="toggle-switch">

View file

@ -3956,7 +3956,7 @@ export async function initializeSettings(scrobbler, player, api, ui) {
if (graphSection) graphSection.style.display = mode === 'legacy' ? 'none' : '';
// Legend only relevant in modes with Original/Target/Corrected curves
const graphLegend = document.querySelector('.autoeq-graph-legend');
if (graphLegend) graphLegend.style.display = (mode === 'autoeq' || mode === 'speaker') ? '' : 'none';
if (graphLegend) graphLegend.style.display = mode === 'autoeq' || mode === 'speaker' ? '' : 'none';
// Only show shared AutoEq button in AutoEQ mode
if (autoeqRunBtn) autoeqRunBtn.style.display = mode === 'autoeq' ? '' : 'none';