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">
|
<div class="info">
|
||||||
<span class="label">EQ Studio</span>
|
<span class="label">EQ Studio</span>
|
||||||
<span class="description"
|
<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>
|
</div>
|
||||||
<label class="toggle-switch">
|
<label class="toggle-switch">
|
||||||
|
|
|
||||||
|
|
@ -3956,7 +3956,7 @@ export async function initializeSettings(scrobbler, player, api, ui) {
|
||||||
if (graphSection) graphSection.style.display = mode === 'legacy' ? 'none' : '';
|
if (graphSection) graphSection.style.display = mode === 'legacy' ? 'none' : '';
|
||||||
// Legend only relevant in modes with Original/Target/Corrected curves
|
// Legend only relevant in modes with Original/Target/Corrected curves
|
||||||
const graphLegend = document.querySelector('.autoeq-graph-legend');
|
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
|
// Only show shared AutoEq button in AutoEQ mode
|
||||||
if (autoeqRunBtn) autoeqRunBtn.style.display = mode === 'autoeq' ? '' : 'none';
|
if (autoeqRunBtn) autoeqRunBtn.style.display = mode === 'autoeq' ? '' : 'none';
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue