Fix worker error in website
This commit is contained in:
parent
bcfaee9c4c
commit
39f4c69571
@ -72,7 +72,7 @@ export default function Editor({
|
|||||||
highlightActiveLine={true}
|
highlightActiveLine={true}
|
||||||
value={args}
|
value={args}
|
||||||
onChange={onArgsUpdate}
|
onChange={onArgsUpdate}
|
||||||
setOptions={{ tabSize: 2 }}
|
setOptions={{ tabSize: 2, useWorker: false }}
|
||||||
/>
|
/>
|
||||||
</Stack>
|
</Stack>
|
||||||
<AceEditor
|
<AceEditor
|
||||||
@ -87,7 +87,7 @@ export default function Editor({
|
|||||||
readOnly
|
readOnly
|
||||||
highlightActiveLine={false}
|
highlightActiveLine={false}
|
||||||
value={genFFmpegText(args)}
|
value={genFFmpegText(args)}
|
||||||
setOptions={{ tabSize: 2 }}
|
setOptions={{ tabSize: 2, useWorker: false }}
|
||||||
/>
|
/>
|
||||||
<Typography>Console Output:</Typography>
|
<Typography>Console Output:</Typography>
|
||||||
<AceEditor
|
<AceEditor
|
||||||
@ -102,7 +102,7 @@ export default function Editor({
|
|||||||
showPrintMargin={true}
|
showPrintMargin={true}
|
||||||
highlightActiveLine={false}
|
highlightActiveLine={false}
|
||||||
value={logs.join("\n")}
|
value={logs.join("\n")}
|
||||||
setOptions={{ tabSize: 2 }}
|
setOptions={{ tabSize: 2, useWorker: false }}
|
||||||
onLoad={(editor) => setOutput(editor)}
|
onLoad={(editor) => setOutput(editor)}
|
||||||
/>
|
/>
|
||||||
<Typography>Transcoding Progress:</Typography>
|
<Typography>Transcoding Progress:</Typography>
|
||||||
|
Loading…
Reference in New Issue
Block a user