diff --git a/online/src/app/framework/context/editor.jsx b/online/src/app/framework/context/editor.jsx index 6101b1533..c27973d2e 100644 --- a/online/src/app/framework/context/editor.jsx +++ b/online/src/app/framework/context/editor.jsx @@ -169,6 +169,10 @@ const EditorProvider = props => const controllerAction = ( controller, action, parameters ) => { + if ( ! workerClient.isWorkerReady() ) { + console.log( 'Worker not ready:', action ); + return; + } const controllerPath = controller.__path .join( ':' ); if ( action === 'setProperty' ) { const { name, value } = parameters;