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
2 changes: 1 addition & 1 deletion wren-ui/src/apollo/server/services/projectService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const SENSITIVE_PROPERTY_NAME = new Set([
'privateKey',
'accessToken',
'clientSecret',
'webIdentityToken'
'webIdentityToken',
]);
export interface ProjectData {
displayName: string;
Expand Down
3 changes: 1 addition & 2 deletions wren-ui/src/hooks/useSetupConnectionDataSource.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ export const transformFormToProperties = (
};
}


return {
...properties,
// remove password placeholder if user doesn't change the password
Expand Down Expand Up @@ -203,7 +202,7 @@ function getAthenaAuthentication(properties: Record<string, any>) {
: properties?.webIdentityToken,
};
}

return {
awsSecretKey:
properties?.awsSecretKey === PASSWORD_PLACEHOLDER
Expand Down