mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-10 04:30:25 +02:00
prevent click propagation on detached queue button (#1762)
This commit is contained in:
@@ -170,7 +170,10 @@ const QueueButton = () => {
|
||||
return (
|
||||
<PopoverPlayQueue
|
||||
onClose={handlePopoverClose}
|
||||
onToggle={handleToggleQueue}
|
||||
onToggle={(e) => {
|
||||
e.stopPropagation();
|
||||
handleToggleQueue();
|
||||
}}
|
||||
opened={popoverOpened}
|
||||
/>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user