File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
apps/website/src/components/Playground/Workspace Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ export default function Editor({
72
72
highlightActiveLine = { true }
73
73
value = { args }
74
74
onChange = { onArgsUpdate }
75
- setOptions = { { tabSize : 2 } }
75
+ setOptions = { { tabSize : 2 , useWorker : false } }
76
76
/>
77
77
</ Stack >
78
78
< AceEditor
@@ -87,7 +87,7 @@ export default function Editor({
87
87
readOnly
88
88
highlightActiveLine = { false }
89
89
value = { genFFmpegText ( args ) }
90
- setOptions = { { tabSize : 2 } }
90
+ setOptions = { { tabSize : 2 , useWorker : false } }
91
91
/>
92
92
< Typography > Console Output:</ Typography >
93
93
< AceEditor
@@ -102,7 +102,7 @@ export default function Editor({
102
102
showPrintMargin = { true }
103
103
highlightActiveLine = { false }
104
104
value = { logs . join ( "\n" ) }
105
- setOptions = { { tabSize : 2 } }
105
+ setOptions = { { tabSize : 2 , useWorker : false } }
106
106
onLoad = { ( editor ) => setOutput ( editor ) }
107
107
/>
108
108
< Typography > Transcoding Progress:</ Typography >
You can’t perform that action at this time.
0 commit comments