mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
fix: stop volume slider clicks from opening full screen (#1585)
* fix volume slider clicks from opening full screen
This commit is contained in:
@@ -448,6 +448,9 @@ const VolumeButton = () => {
|
||||
max={100}
|
||||
min={0}
|
||||
onChange={handleVolumeSlider}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation();
|
||||
}}
|
||||
onWheel={handleVolumeWheel}
|
||||
size={6}
|
||||
value={sliderValue}
|
||||
|
||||
Reference in New Issue
Block a user