fix(catalog): add vertical spacing between tags in catalog table

Fixes issue where tags in the component list had no vertical margin,
causing borders to overlap when tags wrap to multiple lines.

Changed marginBottom: '0px' to margin: '2px' for consistent spacing.

Fixes #31229

Signed-off-by: samarthsinh2660 <rajuvala80@gmail.com>
This commit is contained in:
samarthsinh2660
2026-01-20 11:51:39 +05:30
parent 0aaaf7b00e
commit 8d4c48b3f1
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog': patch
---
Fixed vertical spacing between tags in the catalog table. Tags now have consistent 2px margin to prevent border overlap when wrapped to multiple lines.
@@ -174,7 +174,7 @@ export const columnFactories = Object.freeze({
label={t}
size="small"
variant="outlined"
style={{ marginBottom: '0px' }}
style={{ margin: '2px' }}
/>
))}
</>