diff --git a/src/misc/modals/Hint.js b/src/misc/modals/Hint.js index cfd2c5d..317c034 100644 --- a/src/misc/modals/Hint.js +++ b/src/misc/modals/Hint.js @@ -55,16 +55,16 @@ const Stream = function (props) { }; return ( - - + + {/* - + */} {props.stream.type === 'audio' ? ( - + Codec} value={props.stream.codec} onChange={handleChange('codec')}> H264 HEVC @@ -142,21 +142,23 @@ const Streams = function (props) { {props.streams.map((stream, index) => ( - - Stream {stream.stream} + + {stream.type} - {index > 0 && ( - - )} ))} - + {props.streams.length < 2 && ( + + )} + {props.streams.length === 2 && ( + + )} );