summaryrefslogtreecommitdiffstatshomepage
path: root/webui/src/pages/bug/LabelChange.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/pages/bug/LabelChange.tsx')
-rw-r--r--webui/src/pages/bug/LabelChange.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/pages/bug/LabelChange.tsx b/webui/src/pages/bug/LabelChange.tsx
index 6b356d14a..28fc47433 100644
--- a/webui/src/pages/bug/LabelChange.tsx
+++ b/webui/src/pages/bug/LabelChange.tsx
@@ -35,12 +35,12 @@ function LabelChange({ op }: Props) {
<Author author={op.author} className={classes.author} />
{added.length > 0 && <span> added the </span>}
{added.map((label, index) => (
- <Label key={index} label={label} className={classes.label} />
+ <Label inline key={index} label={label} className={classes.label} />
))}
{added.length > 0 && removed.length > 0 && <span> and</span>}
{removed.length > 0 && <span> removed the </span>}
{removed.map((label, index) => (
- <Label key={index} label={label} className={classes.label} />
+ <Label inline key={index} label={label} className={classes.label} />
))}
<span>
{' '}