mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
Merge pull request #615 from Stremio/fix-player-time-tabindex
fix: remaining time tabindex
This commit is contained in:
commit
5a901601a1
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ const SeekBar = ({ className, time, duration, buffered, onSeekRequested }) => {
|
|||
onSlide={onSlide}
|
||||
onComplete={onComplete}
|
||||
/>
|
||||
<Button onClick={toggleRemainingTimeMode}>
|
||||
<Button onClick={toggleRemainingTimeMode} tabIndex={-1}>
|
||||
<div className={styles['label']}>
|
||||
{remainingTimeMode && duration !== null && !isNaN(duration)
|
||||
? formatTime(duration - time, '-')
|
||||
|
|
|
|||
Loading…
Reference in a new issue