style: auto-fix linting issues
This commit is contained in:
parent
4c35bed3f2
commit
bee43e7e89
2 changed files with 3 additions and 2 deletions
|
|
@ -4163,7 +4163,8 @@
|
|||
<div class="info">
|
||||
<span class="label">EQ Studio</span>
|
||||
<span class="description"
|
||||
>Multi-mode equalizer with AutoEQ, M/S processing & room correction</span
|
||||
>Multi-mode equalizer with AutoEQ, M/S processing & room
|
||||
correction</span
|
||||
>
|
||||
</div>
|
||||
<label class="toggle-switch">
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue