-
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 (#3201)
- Loading branch information
1 parent
d0b5ce9
commit 3a76f55
Showing
8 changed files
with
56 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
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