Skip to content

Commit

Permalink
Fix seekbar not working
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Mar 1, 2024
1 parent d41062a commit 0039e4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/components/player/PreviewThumbnailPlayer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ function VideoPreview({
<source src={relevantPreview.src} type={relevantPreview.type} />
</video>
<Slider
className="absolute inset-x-0 bottom-0"
className="absolute inset-x-0 bottom-0 z-30"
value={[progress]}
onValueChange={onManualSeek}
onValueCommit={onStopManualSeek}
Expand Down Expand Up @@ -586,7 +586,7 @@ function InProgressPreview({
onLoad={handleLoad}
/>
<Slider
className="absolute inset-x-0 bottom-0"
className="absolute inset-x-0 bottom-0 z-30"
value={[key]}
onValueChange={onManualSeek}
onValueCommit={onStopManualSeek}
Expand Down

0 comments on commit 0039e4e

Please sign in to comment.