feat(catalog): change the tags in the entity list to be gray (#2205)

This commit is contained in:
Oliver Sand
2020-09-01 09:51:00 +02:00
committed by GitHub
parent bcbeb0b657
commit b9ed0d3088
@@ -75,12 +75,7 @@ const columns: TableColumn<Entity>[] = [
<>
{entity.metadata.tags &&
entity.metadata.tags.map(t => (
<Chip
key={t}
label={t}
color="secondary"
style={{ marginBottom: '0px' }}
/>
<Chip key={t} label={t} style={{ marginBottom: '0px' }} />
))}
</>
),