Skip to content

Commit

Permalink
Input type for SelectTransform must be Object
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeembrey committed Sep 7, 2018
1 parent c2ea6d3 commit 6f612a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class ComposeTransform extends IdentityTransform {
}

export class SelectTransform extends IdentityTransform {
static inputSchema = schemaFromJSON({ '@type': 'Any' })
static inputSchema = schemaFromJSON({ '@type': 'Object' })

constructor(public key: string, description: string, comment: string) {
super(description, comment)
Expand Down

0 comments on commit 6f612a0

Please sign in to comment.