We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbf3693 commit 7729ea7Copy full SHA for 7729ea7
1 file changed
ext/PlantSimEngineGraphEditorExt.jl
@@ -573,10 +573,16 @@ function _initialization_payload(mapping::PlantSimEngine.ModelMapping)
573
value_payload = isnothing(status) || !(variable in keys(status)) ?
574
_status_value_payload(nothing; provided=false) :
575
_status_value_payload(status[variable]; provided=true)
576
- push!(payload, merge(Dict(
577
- "scale" => string(scale),
578
- "name" => string(variable),
579
- ), value_payload))
+ push!(
+ payload,
+ merge(
+ Dict(
580
+ "scale" => string(scale),
581
+ "name" => string(variable),
582
+ ),
583
+ value_payload
584
+ )
585
586
end
587
588
return payload
0 commit comments