diff --git a/catalog-rest-service/src/main/resources/ui/src/components/common/table-data-card/TableDataCard.tsx b/catalog-rest-service/src/main/resources/ui/src/components/common/table-data-card/TableDataCard.tsx index 383f4723e01..aacc4fb8053 100644 --- a/catalog-rest-service/src/main/resources/ui/src/components/common/table-data-card/TableDataCard.tsx +++ b/catalog-rest-service/src/main/resources/ui/src/components/common/table-data-card/TableDataCard.tsx @@ -70,7 +70,9 @@ const TableDataCard: FunctionComponent = ({ ]; const getAssetTags = () => { - const assetTags = [...(tags as Array)]; + const assetTags = [ + ...(tags as Array).filter((tag) => !tag.includes(tier)), + ]; if (tier) { assetTags.unshift(tier); }