Skip to content

Commit

Permalink
QA
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-torres-marroquin committed Jan 15, 2025
1 parent cf7e4a9 commit a76b86b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ export const CONNECTOR_LOGOS_PATH = "/images/connector-logos/";
export const CONNECTION_TYPE_LOGO_MAP = new Map<ConnectionType, string>([
[ConnectionType.ATTENTIVE_EMAIL, "attentive.svg"],
[ConnectionType.BIGQUERY, "bigquery.svg"],
[ConnectionType.DATAHUB, "datahub.svg"],
[ConnectionType.DYNAMODB, "dynamodb.svg"],
[ConnectionType.GENERIC_CONSENT_EMAIL, "ethyca.svg"],
[ConnectionType.GENERIC_ERASURE_EMAIL, "ethyca.svg"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,14 @@ const ConnectionForm = ({ connectionConfig, systemFidesKey }: Props) => {
systemFidesKey={systemFidesKey}
/>
) : null}
{selectedConnectionOption?.type === SystemType.DATA_CATALOG ? (
<ConnectorParameters
connectionConfig={connectionConfig}
setSelectedConnectionOption={setSelectedConnectionOption}
connectionOption={selectedConnectionOption}
systemFidesKey={systemFidesKey}
/>
) : null}
{selectedConnectionOption?.type === SystemType.SAAS &&
selectedConnectionOption ? (
<ConnectorParameters
Expand Down
5 changes: 3 additions & 2 deletions clients/admin-ui/src/types/api/models/SystemType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
/* eslint-disable */

export enum SystemType {
SAAS = "saas",
DATA_CATALOG = "data_catalog",
DATABASE = "database",
MANUAL = "manual",
EMAIL = "email",
MANUAL = "manual",
SAAS = "saas",
}

0 comments on commit a76b86b

Please sign in to comment.