mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 03:22:11 +00:00
refactor(StreamingServerInputs): non null value
This commit is contained in:
parent
a162397d29
commit
eab1b8def3
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ const useStreamingServerSettingsInputs = (streamingServer) => {
|
||||||
value: name,
|
value: name,
|
||||||
}))
|
}))
|
||||||
],
|
],
|
||||||
value: streamingServer.settings.content.transcodeProfile ?? null,
|
value: streamingServer.settings.content.transcodeProfile,
|
||||||
onSelect: (value) => {
|
onSelect: (value) => {
|
||||||
core.transport.dispatch({
|
core.transport.dispatch({
|
||||||
action: 'StreamingServer',
|
action: 'StreamingServer',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue