Skip to content

Commit

Permalink
fix types (#20187)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Reuter authored Dec 7, 2022
1 parent e12d366 commit eb67966
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion airbyte-webapp/src/core/form/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,16 @@ import { AirbyteJSONSchema } from "core/jsonSchema";
*/
type FormRelevantJSONSchema = Pick<
AirbyteJSONSchema,
"default" | "examples" | "description" | "pattern" | "order" | "const" | "title" | "airbyte_hidden" | "enum"
| "default"
| "examples"
| "description"
| "pattern"
| "order"
| "const"
| "title"
| "airbyte_hidden"
| "enum"
| "format"
>;

interface FormItem extends FormRelevantJSONSchema {
Expand Down

0 comments on commit eb67966

Please sign in to comment.