mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
null delay option not rendered
This commit is contained in:
parent
163343dd1a
commit
4ef013a2f4
1 changed files with 1 additions and 1 deletions
|
|
@ -179,7 +179,7 @@ class SubtitlesPicker extends Component {
|
|||
onChange={this.setSubtitleSize}
|
||||
/>
|
||||
<NumberInput
|
||||
value={this.props.subtitleDelay / 1000}
|
||||
value={this.props.subtitleDelay !== null ? this.props.subtitleDelay / 1000 : null}
|
||||
unit={'s'}
|
||||
delta={0.2}
|
||||
onChange={this.setSubtitleDelay}
|
||||
|
|
|
|||
Loading…
Reference in a new issue