fix: correct propagation on settings menu (#1453)

* fix propagation error on settings menu
This commit is contained in:
Pyx
2025-12-29 17:57:49 -05:00
committed by GitHub
parent 9841cfba38
commit 42058ff6d6
4 changed files with 15 additions and 1 deletions
@@ -407,6 +407,7 @@ export const PlayerConfig = () => {
size: 'lg',
}}
size="sm"
stopsPropagation
tooltip={{
label: t('common.setting_other', { postProcess: 'titleCase' }),
openDelay: 0,
@@ -95,7 +95,10 @@ const AutoDJButton = () => {
return (
<Button
onClick={toggleAutoDJ}
onClick={(e) => {
e.stopPropagation();
toggleAutoDJ();
}}
size="compact-xs"
style={{ color: settings.enabled ? 'var(--theme-colors-primary)' : undefined }}
uppercase