diff --git a/web/src/components/data-table/Cells.tsx b/web/src/components/data-table/Cells.tsx
index e480aeb..5cb4dba 100644
--- a/web/src/components/data-table/Cells.tsx
+++ b/web/src/components/data-table/Cells.tsx
@@ -71,7 +71,15 @@ export const ReleaseStatusCell = ({ value }: ReleaseStatusCellProps) => (
{v.client &&
Client: {v.client}}
{v.filter && Filter: {v.filter}}
Time: {simplifyDate(v.timestamp)}
- {v.rejections.length > 0 && Rejections: {v.rejections.toString()}}
+ {v.rejections.length ? (
+
+ Rejections:
+ {" "}
+
+ {v.rejections.toString()}
+
+
+ ) : null}
diff --git a/web/src/components/tooltips/Tooltip.tsx b/web/src/components/tooltips/Tooltip.tsx
index 2f5dd30..34941f1 100644
--- a/web/src/components/tooltips/Tooltip.tsx
+++ b/web/src/components/tooltips/Tooltip.tsx
@@ -6,9 +6,10 @@ export const Tooltip = ({ children, button } : {
return (
{button}
-
-
{children}
-
+
+
+ {children}
+
);