-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ingestion-ui) Add new form for the bigquery-beta connector #6200
feat(ingestion-ui) Add new form for the bigquery-beta connector #6200
Conversation
@@ -19,17 +19,12 @@ const StyledRemoveIcon = styled(MinusCircleOutlined)` | |||
margin-left: 10px; | |||
`; | |||
|
|||
interface ListFieldProps { | |||
interface CommonFieldProps { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like this renaming
return setFieldValueOnRecipe(recipe, null, startTimeFieldPath); | ||
} | ||
const isoDateString = value.toISOString(); | ||
const formattedDateString = isoDateString |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you see this being used elsewhere (and should it be in a utils file)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I certainly can - good call
Adds a new form for the
bigquery-beta
connector. It's similar to the regularbigquery
form but with a few tweaks, including new allow/deny patterns, and a new field type (DATE
).This PR doesn't include
bigquery-beta
intosources.json
quite yet so it won't be visible in the UI until we flip the switch. Getting this in there now will give us flexibility in how/when we roll this out, though.the form:
Checklist