-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
address UX concerns with connection types
- Loading branch information
1 parent
06e065b
commit cb6f5c1
Showing
9 changed files
with
60 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
export enum ConnectionTypesOptions { | ||
keyword = 'Keyword', | ||
category = 'Category', | ||
createdBy = 'Created by', | ||
creator = 'Creator', | ||
} | ||
|
||
export const options = { | ||
[ConnectionTypesOptions.keyword]: 'Keyword', | ||
[ConnectionTypesOptions.category]: 'Category', | ||
[ConnectionTypesOptions.createdBy]: 'Created By', | ||
[ConnectionTypesOptions.creator]: 'Creator', | ||
}; | ||
|
||
export type FilterDataType = Record<ConnectionTypesOptions, string | undefined>; | ||
|
||
export const initialFilterData: Record<ConnectionTypesOptions, string | undefined> = { | ||
[ConnectionTypesOptions.keyword]: '', | ||
[ConnectionTypesOptions.category]: '', | ||
[ConnectionTypesOptions.createdBy]: '', | ||
[ConnectionTypesOptions.creator]: '', | ||
}; | ||
|
||
export const categoryOptions = ['Object storage', 'Database', 'Model registry', 'URI']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters