Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,7 @@
"inputKeyword": "projectId",
"inputType": "text",
"inputTooltip": "Project ID on Google Cloud Platform",
"dependency": {
"key": "authType",
"value": "app_default_credentials"
}
},
{
"inputLabel": "Project ID",
"inputKeyword": "optionalProjectId",
"inputType": "text",
"inputPlaceholder": "Optional",
"inputTooltip": "Project ID on Google Cloud Platform",
"dependency": {
"key": "authType",
"value": "service_account_key"
}
"inputPlaceholder": "Optional if using service account"
},
{
"inputLabel": "Dataset name",
Expand Down
2 changes: 1 addition & 1 deletion reverse_engineering/helpers/connectionHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function getAuthInfo({ authType, connectionInfo }) {
}
// service account case and backward compatible value
return {
projectId: connectionInfo?.optionalProjectId,
projectId: connectionInfo.projectId,
credentialsFilePath: connectionInfo.keyFilename,
};
}
Expand Down
Loading