This commit is contained in:
Dmitry Vasilev
2023-06-09 16:21:18 +03:00
parent ec6fdda6e8
commit 7b35231355

View File

@@ -319,6 +319,15 @@ const validate_index_action = state => {
if(!state.parse_result.ok){ if(!state.parse_result.ok){
return {state, effects: {type: 'set_status', args: ['invalid syntax']}} return {state, effects: {type: 'set_status', args: ['invalid syntax']}}
} }
if(
state.loading_external_imports_state != null
||
state.eval_modules_state != null
) {
return {state, effects: {type: 'set_status', args: ['loading']}}
}
if( if(
state.active_calltree_node == null state.active_calltree_node == null
|| ||