Skip to content

Commit

Permalink
a few more model_objects -> exports
Browse files Browse the repository at this point in the history
  • Loading branch information
dangunter committed Jun 2, 2024
1 parent 2118c2d commit 0bef78e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export default function ConfigOutput(props) {
// <Alert severity="info">No soluction found!</Alert>
// </Grid>);
// }
let var_sections = organizeVariables(outputData.outputData.model_objects)
let var_sections = organizeVariables(outputData.outputData.exports)
// console.log("var_sections",var_sections)
return Object.entries(var_sections).map(([key,value])=>{
//console.log("O key:",key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const organizeVariables = () => {
let var_sections = {}
let tempVariables = {}
let tempName = bvars.name
for (const [key, v] of Object.entries(bvars.data.outputData.model_objects)) {
for (const [key, v] of Object.entries(bvars.data.outputData.exports)) {

let catg
let is_input = v.is_input
Expand Down

0 comments on commit 0bef78e

Please sign in to comment.