We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ad1ad6 commit 0c8ecd7Copy full SHA for 0c8ecd7
src/builder/analyzer.rs
@@ -783,10 +783,12 @@ impl AnalyzerContext {
783
.await?;
784
let sub_op_scope_schema =
785
sub_op_scope.states.lock().unwrap().build_op_scope_schema();
786
- op_scope.states.lock().unwrap().sub_scopes.insert(
787
- foreach_op.op_scope.name.clone(),
788
- Arc::new(sub_op_scope_schema),
789
- );
+ op_scope
+ .states
+ .lock()
+ .unwrap()
790
+ .sub_scopes
791
+ .insert(reactive_op.name.clone(), Arc::new(sub_op_scope_schema));
792
analyzed_op_scope_fut
793
};
794
let op_name = reactive_op.name.clone();
0 commit comments