Merge pull request #3735 from adamdmharvey/ownership-table-wrap

plugin-org: Wrap Entity Counter widgets on Ownership Card
This commit is contained in:
Ben Lambert
2020-12-16 08:44:08 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-org': patch
---
Wrap entity cards on smaller screens
@@ -179,7 +179,7 @@ export const OwnershipCard = ({
<InfoCard title="Ownership" variant={variant}>
<Grid container>
{componentsWithCounters?.map(c => (
<Grid item xs={12} md={6} lg={4} key={c.name}>
<Grid item xs={6} md={6} lg={4} key={c.name}>
<EntityCountTile
counter={c.counter}
className={c.className}