Skip to content

Commit

Permalink
Fix names
Browse files Browse the repository at this point in the history
  • Loading branch information
ljupcovangelski committed Sep 8, 2023
1 parent 919b099 commit 174adac
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,13 @@ export const getChannelAvatar = (source: string) => {
case 'Feast':
return <FeastAvatar />;
case Source.faiss:
case 'faiss':
case 'FAISS':
return <MetaAvatar />;
case Source.faissConnector:
case 'FAISS connector':
return <MetaAvatar />;

default:
default:
return <AiryAvatar />;
}
};
Expand Down
Binary file modified lib/typescript/assets/images/icons/meta.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions lib/typescript/model/Connectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export enum ConnectorName {
sourcesViber = 'sources-viber',
rasaConnector = 'rasa-connector',
zendenkConnector = 'zendesk-connector',
faissConnector = 'faiss-connector',
}

export enum InstallationStatus {
Expand Down
1 change: 1 addition & 0 deletions lib/typescript/model/Source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export enum Source {
postgresql = 'postgresql',
feast = 'feast',
faiss = 'faiss',
faissConnector = 'faissConnector',
amazons3 = 'amazons3',
amazonLexV2 = 'amazonLexV2',
integrationSourceApi = 'integrationSourceApi',
Expand Down

0 comments on commit 174adac

Please sign in to comment.