refactor(StreamingServerInputs): non null value

This commit is contained in:
Timothy Z. 2025-06-03 12:48:44 +03:00
parent a162397d29
commit eab1b8def3

View file

@ -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',