Skip to content

Commit

Permalink
Fix config value type and schema (#60688)
Browse files Browse the repository at this point in the history
  • Loading branch information
jen-huang authored Mar 20, 2020
1 parent 8861274 commit 22f14b5
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 @@ -19,7 +19,7 @@ export interface DatasourceInputStream {
string,
{
type?: string;
value: any;
value?: any;
}
>;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const DatasourceBaseSchema = {
schema.string(),
schema.object({
type: schema.maybe(schema.string()),
value: schema.any(),
value: schema.maybe(schema.any()),
})
),
})
Expand Down

0 comments on commit 22f14b5

Please sign in to comment.