From 71f7cdffd29ba918cfca074c98dc64605b526e8f Mon Sep 17 00:00:00 2001 From: Kyrylo Shmidt Date: Wed, 6 Dec 2023 18:50:59 +0100 Subject: [PATCH] Fix asset entry key --- src/components/Assets/AssetList/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Assets/AssetList/index.tsx b/src/components/Assets/AssetList/index.tsx index 23f4212e9..f60fd1dec 100644 --- a/src/components/Assets/AssetList/index.tsx +++ b/src/components/Assets/AssetList/index.tsx @@ -371,7 +371,7 @@ export const AssetList = (props: AssetListProps) => { <> {entries.map((entry) => { - const id = entry.spanCodeObjectId; + const id = `${entry.spanCodeObjectId}__${entry.services.join(",")}`; return (