From 1971ba1059edeff9c040588cd454884117e0d224 Mon Sep 17 00:00:00 2001 From: oleksandrh Date: Thu, 25 Apr 2024 15:51:33 +0300 Subject: [PATCH] Added new category --- src/components/Assets/AssetTypeList/index.tsx | 1 + src/components/Assets/utils.tsx | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/components/Assets/AssetTypeList/index.tsx b/src/components/Assets/AssetTypeList/index.tsx index 4e4d71ca2..fb23a5032 100644 --- a/src/components/Assets/AssetTypeList/index.tsx +++ b/src/components/Assets/AssetTypeList/index.tsx @@ -28,6 +28,7 @@ const ASSET_TYPE_IDS = [ "DatabaseQueries", "CodeLocation", "EndpointClient", + "Cache", "Other" ]; diff --git a/src/components/Assets/utils.tsx b/src/components/Assets/utils.tsx index 35039d1c9..29cc48855 100644 --- a/src/components/Assets/utils.tsx +++ b/src/components/Assets/utils.tsx @@ -42,6 +42,10 @@ export const getAssetTypeInfo = ( label: "Code locations", icon: CodeMarkerPinIcon }, + Cache: { + label: "Cache", + icon: DatabaseIcon + }, Other: { label: "Other" }