1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 10:22:31 +01:00
This commit is contained in:
Mikael Finstad 2020-02-20 17:31:52 +08:00
parent bb326c89c7
commit 2aa0d1a8c6

View File

@ -49,7 +49,7 @@ const HelpSheet = ({ visible, onTogglePress, renderSettings, ffmpegCommandLog })
<h1>Last ffmpeg commands</h1>
<div style={{ overflowY: 'scroll', height: 200 }}>
{ffmpegCommandLog.reverse().map((log) => (
<div style={{ whiteSpace: 'pre' }}>
<div key={log} style={{ whiteSpace: 'pre' }}>
{log}
</div>
))}