Skip to content

Commit

Permalink
Added new category
Browse files Browse the repository at this point in the history
  • Loading branch information
opoliarush committed Sep 25, 2024
1 parent fc0d16d commit 8b13b24
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/Assets/AssetTypeList/AssetTypeList.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ export const Default: Story = {
{
name: "Consumer",
count: 0
},
{
name: "InternalOperation",
count: 10
}
]
}
Expand Down
1 change: 1 addition & 0 deletions src/components/Assets/AssetTypeList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const REFRESH_INTERVAL = 10 * 1000; // in milliseconds
export const ASSET_TYPE_IDS = [
"Endpoint",
"Consumer",
"InternalOperation",
"DatabaseQueries",
"CodeLocation",
"EndpointClient",
Expand Down
4 changes: 4 additions & 0 deletions src/components/Assets/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ export const getAssetTypeInfo = (
label: "Consumers",
icon: UserIcon
},
InternalOperation: {
label: "Internal Operations",
icon: HTTPClientIcon
},
DatabaseQueries: {
label: "Database queries",
icon: DatabaseIcon
Expand Down

0 comments on commit 8b13b24

Please sign in to comment.