Skip to content

Commit

Permalink
Fix: missing array modifier for scalar fields
Browse files Browse the repository at this point in the history
#346
Signed-off-by: Gopalakrishna Palem <[email protected]>
  • Loading branch information
KrishnaPG committed Oct 23, 2023
1 parent 9ff9b0c commit cc05deb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/concerto-core/lib/introspect/field.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ class Field extends Property {

fieldAst.name = this.ast.name;
this.scalarField = new Field(this.getParent(), fieldAst);
this.scalarField.array = this.isArray();
return this.scalarField;
}
}
Expand Down

0 comments on commit cc05deb

Please sign in to comment.